| Image resolution is an idea that was born with desktop publishing. Prior to digital printing an image might be called "soft" or out of focus but the blurriness was a result of the photographic process. When it became possible to digitize images the issue of resolution became very important because printing required high resolution but it also made image files very large and difficult to work with. In trying to cope with those problems image programmers have come up with two basic solutons.
Pixel art or "bitmap" is a digital image format that literally defines how many pixels are present and what color value each pixel has. For a brief overview of color models you can see the previous section but the big issue here is How Many Pixels Per Inch? or in a word - resolution.
Resolution is a factor of width and height and you can figure pixel resolution by multplying the number of pixels in each for the total number of pixels - just like figuring area. The problem is that a pixel is an abstract idea and even though you can have a lot of pixels they need to ultimately translate to print units which are called dots. So for printing, resolution is described as dots per inch or dpi. Basically, however many pixels are in an image at the target resolution will give you the real printing resolution. For example, if you have an image that is 300 pixels x 300 pixels and you want to print at 300 dpi, you will have enough pixels to print an image 1 inch x 1 inch.
300 dpi is the recommended resolution for digital printing.
To understand a practical application - if you have an image that you want to print 5" x 7" at 300 dpi you will need an image resolution of 1500 pixels x 2100 pixels. This results in a rather large file size of 12 MB if the image is CMYK.
You can't add resolution if it isn't there to begin with. If your source image is 72 dpi, as many web images are, you can change its pixel depth but it won't help its apparent resolution. If it started out at low resolution adding pixels just adds file size but can't make up for its lack of definition. Web images will almost never have enough resolution to print well. Most current digital cameras (4 megapixels and up) have good enough resolution to print 8.5 x 11 at photo quality.
There are many pixel based art file types. Some examples are:
- .tif (tagged image file) - a pixel based format with a preview (tag) embedded. A standard print file format.
- .jpeg (joint photographic experts group) - a pixel based format with robust compression options. JPEGs are often used for web images but are entirely appropriate for printing if high resolution, not compressed too much and CMYK.
- Photoshop EPS - (encapsulated post script) not to be confused with Illustrator EPS, a vector art format. Photoshop EPS is like .tif in that it carries a preview (the encapsulated part) with the file.
- .gif - (graphics interchange format) - almost always used for web images and rarely appropriate for printing.
- .png - (portable network graphics) - 1st cousin to the.gif and also used mostly for web graphics.
The other digital art format that is used for printing is called a vector art file. Vector art formats use algorithms to describe the image giving it three major advantages for printing.
- Vector art is effectively infintely high resolution. Since the image is calculated at the press the only limitation is the presses RIP (Raster Image Processor).
- Since vector art resolution is determined when processed it can be scaled up or down with no loss.
- Since vector art is code based in concept it is very economical and can be very smal in file size.
Vector art is used where line art or graphics are appropriate and is often used to set type since it describes type as lines rather than pixels.
For more information on image resolution got to
http://en.wikipedia.org/wiki/Image_resolution
For more information on graphic file formats go to
http://en.wikipedia.org/wiki/Graphics_file_format
|