Every image based multimedia record in EMu has a table of resolutions associated with it. The Resolutions table contains one entry per image format / size maintained and appears on the Resolutions tab in the Multimedia module:
For each image the following properties are kept:
Identifier
|
The name of the file that contains the image in the Multimedia repository.
|
Width (pixels)
|
The width of the image in pixels.
|
Height (pixels)
|
The height of the image in pixels.
|
Bits/Pixel
Colour Depth
|
The number of bits used to represent one pixel in the image. This may also be known as the Colour Depth.
|
Planes
|
The number of layers used to form the image. Some image formats (e.g. TIFF) split an image up into layers (e.g. one layer per primary colour).
|
Colours
|
The maximum number of colours that may be represented in an image. For non-palette based formats (e.g. JPEG) this is directly related to the Bits/Pixel. For palette based formats (e.g. GIF) the number of colours is the number of palette entries allocated.
|
Images
|
The number of images stored within the image file. Some image formats (e.g. TIFF) allow multiple pages to be stored within the one image file.
|
Compression
|
The type of compression used to store the image data. Most image formats are tied to their corresponding internal compression format, but TIFF supports many compression types.
|
File Size (bytes)
|
The size of the image file in bytes.
|
Quality
|
The compression quality for jpeg images. A value between 100 and 1 is allowed, where 100 is lossless compression and 1 very lossy compression.
|
MIME Type
|
The Multipurpose Internet Mail Extensions document type. The value image will be set for all image media.
|
MIME Format
|
The format of the image. Possible values include gif, png, jpeg, tiff, etc.
|
As the Identifier, File Size, MIME Type and MIME Format properties are determined by the System, they cannot be modified. All other attributes may be modified; however the System will provide initial values as determined by the image.
The name of each image follows a certain format. The format is basename.size.format
where:
basename
|
is the name of the original image file minus the file extension.
|
size
|
is the generated image size (note this is not necessarily the same as the image width and height).
|
format
|
is the file extension for the given image format.
|
There are two exceptions to this naming convention:
- The original image. This is always the first entry listed in the Resolutions table and it excludes the size component.
- The thumbnail image. This is the second entry in the Resolutions table and has a size component of thumb.
The size component does not reflect the image width and height, but rather indicates the resolution used to generate the image. For example, if an image is 200x100 pixels and a 100x100 image is generated from it while still maintaining the aspect ratio, the generated image will be 100x50 pixels. The size component will be 100x100, even though the image is only 100x50 pixels.
[Close]