Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to program an offline catalog in C#. It displays clickable categories and each category contains clickable items. When clicked, the item comes to foreground with a description and a series of images. The problem is, I have about 1000 image files and I'm trying to make the program as light as possible. I'm still a student so my knowledge is limited, I'm not looking for über optimisation simply efficiency.

share|improve this question
Offline, yes.. but is it web or desktop? – Simon Whitehead Aug 12 '12 at 2:12
@Simon Desktop ! – Alexandre Grégoire Aug 12 '12 at 19:32

1 Answer

Possibly consider using Sprites

Link to CSS sprites (and you can translate the concept to desktop too)

e.g. a single image file that has all of your images. You then use offsets and image bounds to display just a portion of the image at a time

Depending on the format you save the image in, you will gain some space savings. Possibly you will also be able to share a single instance of the image in your code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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