|
SOLUTIONS
|
MATHEMATICA IMPORT/EXPORT FORMAT
BMP (.bmp, .dib, .rle)
MIME type: image/bmp
BMP Windows bitmap format.
Raster image format.
Native bitmap format of the Microsoft Windows operating system.
BMP is an acronym derived from Bitmap.
Binary file format.
Stores color bitmaps at a variety of color resolutions.
Allows different bit depths in different channels.
Has support for color reduction palettes using up to 256 8-bit RGB colors.
Supports transparency.
Stores data in uncompressed or run-length encoded form.
BMP Windows bitmap format.
Raster image format.
Native bitmap format of the Microsoft Windows operating system.
BMP is an acronym derived from Bitmap.
Binary file format.
Stores color bitmaps at a variety of color resolutions.
Allows different bit depths in different channels.
Has support for color reduction palettes using up to 256 8-bit RGB colors.
Supports transparency.
Stores data in uncompressed or run-length encoded form.
Import and ExportImport and Export
- Import["file.bmp"] imports a BMP file, returning an Image object.
- Export["file.bmp", expr] exports graphics or any other expression as an image to BMP.
- Notebook and Cell expressions can be exported to BMP.
- When exporting Mathematica graphics or arbitrary expressions to BMP, the resulting image has the same raster size as its displayed form.
- Image objects are by default exported at their raster size.
- Because BMP is a raster image format, all fonts are rasterized on export.
- Import["file.bmp", elem] imports the specified element from a BMP file.
- Import["file.bmp", {elem, suba, subb, ...}] imports a subelement.
- Import["file.bmp", {{elem1, elem2, ...}}] imports multiple elements.
- The import format can be specified with Import["file", "BMP"] or Import["file", {"BMP", elem, ...}].
- Export["file.bmp", expr, elem] creates a BMP file by treating expr as specifying element elem.
- Export["file.bmp", {expr1, expr2, ...}, {{elem1, elem2, ...}}] treats each
as specifying the corresponding
. - Export["file.bmp", expr, opt1->val1, ...] exports expr with the specified option elements taken to have the specified values.
- Export["file.bmp", {elem1->expr1, elem2->expr2, ...}, "Rules"] uses rules to specify the elements to be exported.
- See the reference pages for full general information on Import and Export.
- ImportString and ExportString support the Windows bitmap format.
Notebook InterfaceNotebook Interface
- In the notebook front end, Insert ► Picture and the Open menu allow import of a BMP file into a cell.
- Save Selection As exports the selected part of a notebook as a BMP file.
ElementsElements
- General Import elements:
-
"Elements" list of elements and options available in this file "Rules" full list of rules for each element and option "Options" list of rules for options, properties, and settings - Data representation elements:
-
"Data" array of color values based on the encoding given by 
"Graphics" Graphics object representing an image "Image" raster image, given as an Image object "GrayLevels" array of normalized gray-level values "RawData" color indices, given as an integer array "RGBColorArray" array of RGBColor objects - Import and Export by default use the
element for Windows bitmap files. - Export automatically selects the most appropriate type of BMP file to store binary, grayscale, and color images.
- Export creates a BMP file with indexed color when exporting color-mapped raster graphics or if the
element is specified. - Advanced Import elements:
-
"BitDepth" number of bits used to encode a color channel in the file "ColorDepth" number of bits for each pixel "ColorMap" color reduction palette used in the file "ColorSpace" color encoding "ImageCompression" compression method used in the file "ImageResolution" resolution at which the graphics should be rendered - The BMP format supports the following values for
: -
1 palette of 2 colors 4 color reduction palette of size 16 8 color reduction palette of size 256 16 typically 5 bits per color channel 24 RGB using 8 bits per channel 32 typically 8-bit RGB with opacity
ExamplesExamplesopen allclose all
Basic Examples (7)Basic Examples (7)
| In[1]:= |
| Out[1]= | ![]() |
Export raster graphics to BMP:
| In[1]:= |
| Out[1]= |
All available Import elements:
| In[1]:= |
| Out[1]= |
Image resolution information stored in the file:
| In[1]:= |
| Out[1]= |
Export rasterized vector graphics to BMP:
| In[1]:= |
| Out[1]= |
Exporting this graphics expression creates a BMP file with a color reduction palette:
| In[1]:= |
| Out[1]= |
| In[2]:= |
| Out[2]= |
| In[1]:= |
| Out[1]= |
New in 4 | Last modified in 8
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »




