Click here to Skip to main content
Click here to Skip to main content

Image Sprites and CSS Classes Creator

By , 17 Feb 2013
 

Although no one actually complained about it, I'm adding a download option without the compiled executable for those who may have trouble with the AntiVirus or other security policies

New v2.0  

I  decided to increment the major version of this tool as it implements new core features and actually brakes background compatibility with the previous command line commands.

So... what's new?

  • 3 Bin Packing algorithms to choose from that optimize the sprite image size
  • New and refactored command line commands to let you automate the generation process
  • Support for inner folders
  • Allow setting the output file names

Introduction  

Image Sprites are a very good way to feed your application some images. Basically, it consists of combining a set of images in a larger one and then just caching it. When you need one of the small images, all you have to know are the coordinates of it on the large one. With this technique, you just need to load one image for the entire application and reuse it, instead of loading each image at a time.

Here, I'll be covering the implementation with CSS used on WebSites, but you can use this technique wherever you want.

Why This?

Sure you can Google it and find a lot of matches telling you how to use sprites and CSS but where's the "no pain" way of building them and their CSS? All of them will tell you to use Photoshop of any other photo editing tool but this will always take a lot of time. That's when this cute little application comes in. It will generate the sprite image and its CSS in no time, and you can add images later and regenerate it without having to worry about breaking your code!

Using the Code

On the package, you'll find a compiled version and its source code.

Just drop the SpriteCreator.exe file on the folder that has the images to be included on the sprite and run it. DONE!

Assumptions, Limitations and Functionality

  • All image files on the folder will be added to the sprite no matter the size.
  • All the images on the folder will be included on the sprite.  
  • Only jpg, jpeg, png & bmp extensions are supported.
  • The name of the images is used on the CSS class name.
  • The spaces on images file name will be replaced with -
  • The result 3 files, one *.png (the sprite), *.css and *.html (the demo usage page) where * is the name you specified or a random GUID. 
  • CSS file includes a class that applies the background image to the element
  • Images are ordered using 3 different algorithms (more about them bellow).

Bin Packing Algorithms

To optimize the distribution of the images on the sprite I used the code from here:  Nuclex Game 

 The Bin packing algorithms are very well documented on their page.

All Bin Packing Algorithm credits must be given to these guys that saved me a lot of time by perfectly implementing these three good bin packing algorithms in C#. On my side I only removed the XNA dependencies and replaced them by pure System.Drawing objects.

Options 

This is a console application so you can pass some customization arguments.

  1. /h, /?, /help :: Help 
  2. /s :: Specify the images source directory path
  3. /d :: Destination dir path 
  4. /D :: Same as /d but creates the directory if it doesn't exist
  5. /f :: Destination file name 
  6. /F :: Same as /f but overrides the files if they already exist
  7. /cp :: CSS class name prefix
  8. /pl :: Specify the Bin Packaging Level (1, 2 (default) or 3)

Ex: SpriteCreator.exe /s Images /F SiteImages /cp "app-ui-"

History 

  • v1.0 - The very beginning 
  • v1.1 - Support for images of different sizes and small improvements. 
  • v2.0 - Arguments refactoring and Bin Packing Algorithm usage. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

AlexCode
Architect
Switzerland Switzerland
Member
Senior IT Consultant working in Switzerland as Software Architect and Developer.
 
Find more at on my blog.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberXabring25 Feb '13 - 8:05 
GeneralMy vote of 5memberIndustria Virtual23 Oct '12 - 12:17 
GeneralRe: My vote of 5memberAlexCode23 Oct '12 - 21:06 
GeneralGreat toolmemberBeeWayDev18 Oct '12 - 2:44 
GeneralRe: Great toolmemberAlexCode18 Oct '12 - 4:21 
Generalgood jobmemberwindtear18 Oct '12 - 0:32 
GeneralRe: good jobmemberAlexCode18 Oct '12 - 1:31 
GeneralMy vote of 5memberFrederico Barbosa17 Oct '12 - 22:58 
GeneralRe: My vote of 5memberAlexCode17 Oct '12 - 23:12 
BugImages overlappingmemberDavid Latimer12 Oct '12 - 8:45 
GeneralRe: Images overlappingmemberAlexCode14 Oct '12 - 2:35 
GeneralRe: Images overlappingmemberDavid Latimer15 Oct '12 - 7:41 
GeneralRe: Images overlappingmemberAlexCode17 Oct '12 - 20:16 
GeneralMy vote of 5memberBernd Degen26 Sep '12 - 2:02 
QuestionThank youmemberBernd Degen25 Sep '12 - 21:35 
AnswerRe: Thank youmemberAlexCode25 Sep '12 - 22:28 
GeneralRe: Thank youmemberBernd Degen25 Sep '12 - 22:43 
GeneralRe: Thank youmemberAlexCode26 Sep '12 - 2:13 
QuestionIts nearly perfect to mememberpoLedu30 Aug '11 - 5:23 
AnswerRe: Its nearly perfect to mememberAlexCode30 Aug '11 - 8:06 
GeneralRe: Its nearly perfect to me [modified]memberpoLedu31 Aug '11 - 5:18 
AnswerRe: Its nearly perfect to mememberAlexCode30 Aug '11 - 8:09 
GeneralIgnore my old message because this software does not work correctly at allmemberPokemonCraft18 Apr '11 - 9:48 
GeneralRe: Ignore my old message because this software does not work correctly at allmemberAlexCode1 Jul '11 - 5:46 
GeneralRe: Ignore my old message because this software does not work correctly at allmemberAlexCode25 Sep '12 - 20:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 18 Feb 2013
Article Copyright 2011 by AlexCode
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid