{"id":29944385,"url":"https://github.com/dotnet-ad/assetxport","last_synced_at":"2026-02-18T08:01:03.374Z","repository":{"id":23264427,"uuid":"98574285","full_name":"dotnet-ad/Assetxport","owner":"dotnet-ad","description":"Resize UWP, Xamarin.Android and Xamarin.iOS assets automatically.","archived":false,"fork":false,"pushed_at":"2022-12-07T18:51:18.000Z","size":122,"stargazers_count":16,"open_issues_count":5,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T07:33:23.668Z","etag":null,"topics":["assets","resize","tool","xamarin"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotnet-ad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-07-27T19:45:28.000Z","updated_at":"2024-09-11T08:12:45.000Z","dependencies_parsed_at":"2023-01-13T23:02:13.590Z","dependency_job_id":null,"html_url":"https://github.com/dotnet-ad/Assetxport","commit_stats":null,"previous_names":["aloisdeniel/assetxport"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dotnet-ad/Assetxport","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-ad%2FAssetxport","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-ad%2FAssetxport/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-ad%2FAssetxport/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-ad%2FAssetxport/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotnet-ad","download_url":"https://codeload.github.com/dotnet-ad/Assetxport/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-ad%2FAssetxport/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29573398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T07:57:19.261Z","status":"ssl_error","status_checked_at":"2026-02-18T07:57:18.820Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["assets","resize","tool","xamarin"],"created_at":"2025-08-03T03:13:15.529Z","updated_at":"2026-02-18T08:01:03.302Z","avatar_url":"https://github.com/dotnet-ad.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](Documentation/Logo.png)\n\nResize UWP, Xamarin.Android and Xamarin.iOS assets automatically at build time.\n\n## Install\n\nAvailable on NuGet\n\n[![NuGet](https://img.shields.io/nuget/v/Assetxport.svg?label=NuGet)](https://www.nuget.org/packages/Assetxport/)\n\n## Usage\n\nThe easiest way is to use **Assetxport** from its build task. Simply add a [NuGet](https://www.nuget.org/packages/Assetxport/) package reference to your **Xamarin.iOS**, **Xamarin.Android** or **Universal Windows Platform** project and add a `Config.assets.json` configuration file at the root of your project.\n\n`Config.assets.json`\n\n```json\n{\n  \"Platform\": \"\u003ciOS|Android|UWP\u003e\",\n  \"Input\": [ \"\u003cinput folder path relative to this file, containing all the source hd assets\u003e\" ],\n  \"Output\": \"\u003coutput folder path relative to this file, where all the density assets are generated to\u003e\"\n}\n```\n\n```json\n{\n  \"Platform\": \"iOS\",\n  \"Input\": [ \"../Assetxport.Sample.Cli/Images/\" ],\n  \"Output\": \"Assets.xcassets\"\n}\n```\n\nIn your high definition asset source folder, all `.png`|`.jpg` images should have a suffix qualifier indicating their original density. Here is the list of available qualifiers :\n\n* `\u003cname\u003e.\u003cext\u003e` : **1.00**\n* `\u003cname\u003e@\u003cvalue\u003ex.\u003cext\u003e` : **value**\n* `\u003cname\u003e@ldpi.\u003cext\u003e` : **0.75**\n* `\u003cname\u003e@mdpi.\u003cext\u003e` : **1.00**\n* `\u003cname\u003e@hdpi.\u003cext\u003e` : **1.50**\n* `\u003cname\u003e@xhdpi.\u003cext\u003e` : **2.00**\n* `\u003cname\u003e@xxhdpi.\u003cext\u003e` : **3.00**\n* `\u003cname\u003e@xxxhdpi.\u003cext\u003e` : **4.00**\n\nThen simply build the project to generate your various assets (*with densities lower or equal to the original density*) to the output folder!\n\n## Platforms\n\n### iOS\n\nAssets are generated as asset catalog entries (`.imageset`).\n\n### Android\n\nAssets are generated inside qualified drawable sub folders (`drawable-hdpi`, `drawable-xhdpi`, ...).\n\n### UWP\n\nAssets are generated with a qualified suffix indicating the scale (`scale-100`, `scale-240`, ...).\n\n## Cli\n\nThe standalone `.exe` CLI used by the build task is available from the `/tools` folder of the NuGet package.\n\n## Under the hood\n\nThe tool uses [SkiaSharp](https://github.com/mono/SkiaSharp) to resize all images.\n\n## Contributions\n\nContributions are welcome! If you find a bug please report it and if you want a feature please report it.\n\nIf you want to contribute code please file an issue and create a branch off of the current dev branch and file a pull request.\n\n## License\n\nMIT © [Aloïs Deniel](http://aloisdeniel.github.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnet-ad%2Fassetxport","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotnet-ad%2Fassetxport","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnet-ad%2Fassetxport/lists"}