Generating Bitmaps from SVGs

One of the more tedious and thankless tasks in mobile development is the management of bitmaps. Each platform has its own naming convention and its own set of supported scales. If you want your bitmaps to appear crisp on a wide array of devices, you’ll soon be managing a dozen or so copies of each bitmap. This can quickly lead to frustration and mistakes that are difficult to catch (and it may well be your customers who find the problem).

Some time ago, after struggling with this in a couple of projects, I set about concocting a solution. I wrote a C# script that automatically exports SVGs to each of the desired sizes, for each of the necessary platforms. With great flair of imagination, I named my script Generate.csx.

Recently, Jonathan Dick of Xamarin released a tool called Resizetizer. It has similar goals to my script, but approaches the problem in a very different manner. Xamarin PM, Pierce Boggan, prompted me to write up some details on my solution, and this post is the result. Herein, I will compare my solution to Jonathan’s.

The first and most obvious difference between the two tools is the build integration. Resizetizer is intended to integrate directly into your build process, thus it will run every time you build (I haven’t checked, but presumably it will intelligently ignore images that do not require re-generation).

Generate.csx, in contrast, is designed to be run outside of the normal developnment process. It is only run on an as-need basis, and it might even be a designer running it. It is intelligent enough to skip the generation of bitmaps when the source SVG was modified earlier than the destination bitmap. Running the script is as simple as:

csi .\Generate.csx

If required, there is a -force parameter to ignore timestamps, thereby forcing the regeneration of images whether it was required or not.

The next big difference between the tools is how you configure them. Resizetizer, being a compiled tool, has an external configuration file (YAML). For every image you require, you must list it under the assets section under each platform you support. You must also supply a base size for that image.

Generate.csx is, in my opinion, far easier in this regard. For each image type you need to support, you define a method that forwards onto ExportItem:

private static void ExportToolBarItem(string name) =>
    ExportItem(name, "toolbar item", 24, 22, 20);

It is ExportItem that does the real work based on some simple parameters you supply it. Now, whenever you need a new toolbar item image, you simply add it to a list at the start of the script:

new[]
    {
        "hamburger",
        "foo",
        "bar"
    }
    .ToList()
    .ForEach(ExportToolBarItem);

If you ever need to change the size of all your toolbar icons, you have only one point in the script to modify (the ExportToolBarItem method). You don’t have to spelunk through a long YAML file, figure out which images are toolbar icons, and update each of their base sizes.

Resizetizer supports the resizing of non-vector sources, such as PNGs. Generate.csx does not, partly because I’ve had no need for it, and partly because I wouldn’t want to encourage it. Resizing a bitmap can introduce artifacts that will reduce the professional feel to your images. That said, it would be simple to modify the script to do so if you so desire.

The means by which bitmaps are generated also differs between the tools. Resizetizer uses SkiaSharp whereas Generate.csx simply forwards to an external tool (Inkscape). Naturally, if you have another tool that you’d prefer to use when generating images you can do so.

Generate.csx will also optimize generated images using PNGOut. Again, you can swap this out for something else if desired.

Resizetizer does have an optimize flag in its configuration, but it currently does nothing. Instead, you will need to utilize the provided hooks to run custom external tools against each generated image.

There are, of course, other differences between the tools. However, I believe I’ve covered the most important ones here. One thing that is exactly the same is that both tools are distributed under the MIT license.

If you want to try out Generate.csx as a solution, here’s some things to be aware of:

  1. The script assumes it lives in a directory alongside an Src directory. We use an Art directory, but whatever takes your fancy. Of course, change the script if you want something completely different.
  2. Place your SVG files alongside the script.
  3. Add the name of the file (without the extension) to the appropriate section of the script to have images generated from it.

Enjoy!

Generate.csx

Resizetizer

comments powered by Disqus