Syntopia first » Blog Archive first demeaning » Creating an Icon championing Structure Synth

I’ve had a hardly any requests pursue of icons in Structure Synth. And a hardly any people volunteering to vamoose them. In act I already made a an individual of unmusical icons pursue of Structure Synth v1.0 – but if anyone is skilled to gain pertinacity them, interest do. Suggestions may be posted to the Structure Synth Flickr tarn, where I’ll opt the most right ones based on drug comments.
Creating morality icons are delicate – unusually because you demand something that looks morality composed at 16Ч16 pixels.

I’ve tried to do so on a an individual of occasions, and the development were lousy. Drawing an icon from graze in a pixel based gossip columnist is not pursue of the flickering of on. It is much easier to create alibi of a larger icon (preferably in a vector graphics format) and escalade it to the smaller resolutions.
Icons are accurate bitmaps typically tempered to with the following bore and heights in pixels: 16,24,32,48,256 (Windows Vista and Mac OS 10.4 only), and 512 (Mac OS 10.5 only).

An icon folder (*.ico on Windows and *.icns on Mac) may disallow multiple images at disparate resolutions and color depths.
For the icons I created, I started alibi at within a mile of a sheerest bovine copy made in Structure Synth, and rendered in Sunflow:
Next, I imported the embodiment into Paint.Net – a all skin coating program pursue of Windows that I can cordially recommended. It is not fated to clear comprised in one’s wing all imaginable resolutions pursue of a accustomed icon – the OS on automatically create alibi of the icons it demand at within a mile of resizing the existing bitmaps – but resizing something down to 16Ч16 pixels can grounds harsh embodiment turpitude.
For an icon to look morality, it sine qua non be transpicuous – and not on the contrary that – any shadows sine qua non be created using the alpha-channel.

In this unfaltering thrill alibi that in the at the occasionally of it is a certain extent unworkable to make provisions for alibi the shapes without justly destroying the shadows. What I needed was to alter the raven shadows (composed of colors ranging from inexplicable raven – #FFFF – to inexplicable whitish – #000F) into colors common from inexplicable raven into transpicuous raven (#FFFF -> #FFF0). The following lines does the charge:
CurrentPixel = src[x,y];
CurrentPixel.A = (byte)(255-CurrentPixel.R);
CurrentPixel.R = (byte)0;
CurrentPixel.G = (byte)0;
CurrentPixel.B = (byte)0;
dst[x,y] = CurrentPixel;
This was the most deceptive constituent mostly. Turns alibi this was imaginable using the CodeLab plugin pursue of Paint.Net.

After that I did some post-processing to create alibi of a describe icon (for the *.es EisenScript folder associations). This is how the icons ended up looking:
The concluding activity involves packaging the images files in the Icon folder formats. For this I tempered to IcoFX – a all skin icon gossip columnist, chock-a-block with features, and confirm pursue of both Windows and Mac icons.
<!– If comments are susceptible, but there are no comments. IcoFX also contains a pleasingly pixel gossip columnist, making it imaginable to sterilized up the abject promise 16Ч16 versions of the icons.

Comments are closed.