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.
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.
|
|
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. |
|||
|
|