vote up 9 vote down star
4

Are there any good tools to make css sprites?

IDEALLY I'd want to give it a directory of images and an existing .css file that refers to those images and have it create a big image optimized with all the little images AND change my .css file to refer to those images.

At the least I'd want it to take a directory of images and generate a big sprite and the .css necessary to use each as a background.

Are there any good photoshop plugins or fully blown apps to do this?

flag

44% accept rate
See also stackoverflow.com/questions/519774/… – tehvan Feb 9 at 7:29
Could you please elaborate a little more, are you trying to compile all the sprites on one larger image and then use css to display the part of the image that contains the right sprite. (sliding doors technique) – teh_noob Feb 9 at 7:30

8 Answers

vote up 6 vote down check

This will do 90% of the work for you: http://spritegen.website-performance.org/. You'll still need to edit the rules yourself, but the tool will give you the code fragments you need for the new CSS file.

link|flag
@ben perfect! assuming it works ;-) – Simon Feb 9 at 9:05
i'm a little dissatisfied with this tool so i unchose it as my selected answer. it ended up cropping my image and it doesnt explain very well why it leaves big gaps between images – Simon Feb 12 at 7:43
vote up 2 vote down

found this one pretty fast tho that 500K upload limit might be a pain. source code is available here

link|flag
why would 500kb upload be a pain? i'd probably never want to upload > 100kb – Simon Feb 9 at 9:06
I said it 'might' be a pain. It sorta depends on the application no ? .. A zip file full of medium size PNGs, for example, on a sizable grid ~ ~could~ run close to this number. if its all little bitmaps then sure/ no prob. – Scott Evernden Feb 9 at 14:41
ya but the whole point of css sprites is to prevent lots of little images being loaded with many requests. if you really did have that many little sprites it would take a long time to load in which time none would be displayed. best to keep them i'd think at most 100kb. you can always do several – Simon Feb 10 at 0:14
i do a lot of work with images. maybe not little css bitmaps. so maybe that's why i gave the caveat. your needs are different/ ok. 500kb will arrive in a second on most broadbands. i was first to supply the accepted answer to your query and here i am down~voted and defending my language? whatever... – Scott Evernden Feb 10 at 5:13
vote up 1 vote down

If you like Java, then you can use GWT 1.5+ which comes with something called "ImageBundle." The GWT compiler will handle all the nasty details for you. You won't even have to code a single line of JavaScript or write any CSS.

link|flag
vote up 1 vote down

Not a direct answer but to my fellow developers and web integrators, consider simply aligning each sprite to powers of two; eg a 16 pixel or 32 pixel grid. It makes calculating offsets in the CSS file much easier. All the white space between does not matter as the gifd and png formats compress that very well.

link|flag
good tip, although i'm mainly trying to combine text headers (1-2kb each) into a single file. i'm not worried too much about white space because i know it'll get compressed out - i just dont completely understand why tools to make sprites make so much of it – Simon Feb 13 at 0:46
vote up 1 vote down

This looks promising :

http://smartsprites.osinski.name/

Also i found this article which has some useful information, and even some reader comments worth reading.

Also apparently google web toolkit has something - so if you're using that it might be worth checking out.

link|flag
vote up 0 vote down

Here is a script that combines images via a Photoshop script into CSS sprites. It won't do a sprite map as you asked, but it will combine images in multiples of two (2, 4, 8) if they are the same size. I prefer combining similar images (normal, hover, selected, parent of selected) than having all the images in one file.

link|flag
vote up 0 vote down

There is now Sprite Me by Steve Souders. Just tries it out and it seems to work pretty well.

Here is the link http://spriteme.org/ and here is the blog post announcing it.

http://www.stevesouders.com/blog/2009/09/14/spriteme/

link|flag
vote up 0 vote down

if you are using ruby on rails, there is an easy to install library to generate css sprites.

http://github.com/aberant/spittle

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.