Difference between revisions of "Raster graphics"
Karl Jones (Talk | contribs) (Def) |
Karl Jones (Talk | contribs) (That was external link, this is def.) |
||
Line 1: | Line 1: | ||
+ | In [[computer graphics]], a '''raster graphics''' image is a dot matrix data structure representing a generally rectangular grid of pixels, or points of color, viewable via a monitor, paper, or other display medium. | ||
+ | Raster images are stored in [[Digital image|image files]] with varying [[Image file format|file formats]]. | ||
+ | |||
+ | A bitmap, a single-bit raster, corresponds bit-for-bit with an image displayed on a screen, generally in the same format used for storage in the display's video memory, or maybe as a device-independent bitmap. | ||
+ | |||
+ | A raster is technically characterized by the width and height of the image in pixels and by the number of bits per pixel (a color depth, which determines the number of colors it can represent). | ||
+ | |||
+ | The printing and prepress industries know raster graphics as contones (from "continuous tones"). | ||
+ | |||
+ | The opposite to contones is "line work", usually implemented as [[vector graphics]] in digital systems. | ||
== External Links == | == External Links == | ||
* [https://en.wikipedia.org/wiki/Raster_graphics Raster graphics] @ Wikipedia | * [https://en.wikipedia.org/wiki/Raster_graphics Raster graphics] @ Wikipedia |
Revision as of 07:58, 12 May 2015
In computer graphics, a raster graphics image is a dot matrix data structure representing a generally rectangular grid of pixels, or points of color, viewable via a monitor, paper, or other display medium.
Raster images are stored in image files with varying file formats.
A bitmap, a single-bit raster, corresponds bit-for-bit with an image displayed on a screen, generally in the same format used for storage in the display's video memory, or maybe as a device-independent bitmap.
A raster is technically characterized by the width and height of the image in pixels and by the number of bits per pixel (a color depth, which determines the number of colors it can represent).
The printing and prepress industries know raster graphics as contones (from "continuous tones").
The opposite to contones is "line work", usually implemented as vector graphics in digital systems.
External Links
- Raster graphics @ Wikipedia