Click here to Skip to main content
15,884,943 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have issue about how to reduce image filesize not a image resize.reduce image file size with orignal image hight and width i have google it but i do't have found proper solution anybody plase help me

advance thank
Posted
Comments
syed shanu 16-Apr-14 3:57am    
Chk this link :
http://www.aspdotnet-suresh.com/2011/05/how-to-resize-size-image-without-losing.html


http://www.4guysfromrolla.com/articles/012203-1.aspx

Depends on what the original is, what you want to use it for, and how much degradation in image quality you can accept.

If the original is a bitmap, you can compress it with ZIP pretty effectively, and loose no quality. Or you can convert it to a lossless compression image type such as PNG and again lose not quality.

If the original is a lossy format such as JPG, then anything you do with it will almost certainly not reduce size, unless the quality is also reduced - even reading a JPG and saving it again will lose you image quality to a greater or lesser extent.

If image quality if not that important, then TIF, JPG and GIF formats all use compression and can dramatically shrink the file size - but they do this by "throwing away" information that the eye can't really see, and this can have dramatic effects if you are going to use the image for anything that needs high resolution, such as graphics design or print production.

There is no "magic bullet" to shrinking anything - if there was, we'd just use it a dozen times, and send a 1K file for every movie! :laugh:
 
Share this answer
 
You have not searched well. I see some solutions in the very first page of Google search link[^]. Compressing an image will decrease the file size and not it's height and width. You will need to work on finding the compression level that works best for you.
 
Share this answer
 
v2
Comments
Member 10752740 16-Apr-14 7:42am    
Thank You................i Have solve my probleam
Ankur\m/ 16-Apr-14 8:29am    
Glad to know that it helped. :)

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900