Question: Best STANDARD format (for quality and compression)

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

What is the best STANDARD image format, in terms of quality and compression?

By "standard" I mean ALL Internet Explorer users.
 
VB Programmer said:
What is the best STANDARD image format, in terms of quality and compression?

By "standard" I mean ALL Internet Explorer users.

This depends on the type of the image.
 
If the image is the same size, which is better STANDARD quality? JPEG, BMP,
TIFF, etc..
 
of those 3, i would pick JPEG. a bmp is crappy quality generally, and larger than needed, and
TIFFs cannot be displayed in IE. Its not particularly the size of the image that matters, but
color depth, use of color, etc. The different encoding algorythms for images all have different
strong suits (otherwise there would only be one image format). RLE encoded images look for chains
of similar data, for example. Other formats use other encoding techniques.

Why dont you make a few graphics in each format, and choose the one thats acceptable to you in
both size and quality?


VB Programmer said:
If the image is the same size, which is better STANDARD quality? JPEG, BMP,
TIFF, etc..
 
* "VB Programmer said:
If the image is the same size, which is better STANDARD quality? JPEG, BMP,
TIFF, etc..

As mentioned before, this depends on the type of image. For photographs
you can use JPEG, for drawings GIF is the "preferred" format. I like
the PNG format... Your question is not related to VB.NET programming, I
would try to find more information on the topic with Google.
 
I like
the PNG format...

Me too. It works just like GIF, except that it allows 32 bit color.
JPG degrades the quality of an image. A screen capture in JPG
format does not look good. (in my opinion)


Kevin
 
Back
Top