views:

12

answers:

1

Hi all,

I am implementing an application. In that I need to find out a way to compress the image (size). Because it will help a lot for me to making the space comfortable in the database(server).Please help me on this.

Thanks in advance, Sekhar Behalam.

+1  A: 

Your options are to reduce the dimension of the images and/or reduce the quality by increasing the compression. Are the images photographic in nature (JPG is best) or simple solid colour graphics (use PNGs)?

If the images are JPG (lossy compression) you can simply load and re-save them with a higher compression setting. This can result in a large space saving.

The image quality will of course decline, but you can get away with quite a lot of compression in JPG before it is noticeable. What is acceptable of course is determined by the use of the images (which you have not stated).

Hope this helps.

Enough already
@ HiTech Magic:Hi,I need to work for the JPG images, And I need to just upload them to the server. Let me try as you suggested.Thanks for your great reply,Sekhar Bethalam.
sekhar