PNG (.png)
- Import and Export fully support Version 1.2 of the PNG format.
- Import and Export also support Version 1.0 of the APNG extension of the PNG format.
- Import and Export support Exif 2.3, IPTC 4.2, and XMP metadata standards.
Background & Context
-
- Registered MIME type: image/png
- PNG raster image format.
- Commonly used for graphics and photographic images on the web.
- PNG is an acronym for Portable Network Graphics.
- Binary format.
- Stores both static and animated images.
- Stores color bitmaps at a resolution of 8 or 16 bits per channel.
- Grayscale images are represented at a depth of 1, 2, 4, 8, or 16 bits per pixel.
- Supports alpha channels for 8-bit and 16-bit RGB and grayscale images.
- Has support for color-reduction palettes using 2, 4, 16 or 256 8-bit RGB colors.
- Developed in 1995 as an open and patent-free alternative to the GIF format.
- Published as international standard ISO/IEC 15948:2003 and ISO/IEC 15948:2004.
Import & Export
- Import["file.png"] imports a PNG file, returning a single Image object or a list of images.
- Import["file.png",elem] imports the specified element from a PNG file.
- The import format can be specified with Import["file","PNG"] or Import["file",{"PNG",elem,…}].
- Export["file.png",expr] exports an image, graphics, or any other expression as an image to a PNG file.
- Export["file.png",{expr1,expr2,…}] exports a list of graphics or images as an animation.
- Export["file.png",Manipulate[…]] exports an animated demonstration of a Manipulate object.
- When exporting Wolfram Language graphics or arbitrary expressions to PNG, the resulting image has the same raster size as its displayed form.
- Image objects are by default exported at their raster size.
- Because PNG is a raster image format, all fonts are rasterized on export.
- See the following reference pages for full general information:
-
Import, Export import from or export to a file CloudImport, CloudExport import from or export to a cloud object ImportString, ExportString import from or export to a string ImportByteArray, ExportByteArray import from or export to a byte array
Notebook Interface
- In the notebook front end, Insert ▶ Picture and the Open menu allow the import of a PNG file into a cell.
- Save Selection As exports the selected part of a notebook as a PNG file.
Import Elements
- General Import elements:
-
"Elements" list of elements and options available in this file "Summary" summary of the file "Rules" list of rules for all available elements - Data representation elements:
-
"AnimatedImage" animated PNG represented as an AnimatedImage object "Animation" animated PNG represented as an animation object "Data" array of pixel values "Graphics" first frame of a PNG file, given as a Graphics object "GraphicsList" frames of an animated PNG as a list of Graphics objects "Image" first frame of a PNG file, given as an Image object "ImageList" frames of an animated PNG as a list of Image objects "RawData" array of color map indices {"ThumbnailList",frames} a list of thumbnails (default frames=All) - Import by default uses the "Image" element for a static PNG and "ImageList" for an animated PNG.
- Import of an animated PNG with element "Image" gives the first frame of the animation.
- Export by default generates an animated PNG if the expression supplied is a list of images or a Manipulate, and a static PNG otherwise.
- Advanced Import elements:
-
"AnimationRepetitions" how many times the animation is played before stopping "BitDepth" bits used to represent each color channel in the file "BlendOperation" whether to perform alpha blending to create the next frame "CameraTopOrientation" orientation of the camera when the picture was taken "Channels" the number of color channels used in the file "ColorMap" color reduction palette, given as a list of color values "ColorProfileData" embedded color profile, given as a ColorProfileData object "ColorSpace" color encoding used in the file "Comments" user comments stored in the file "DisplayDurations" display durations of animation frames, given in seconds "DisposalOperation" disposal operation before creating the next frame "FlashUsed" - whether the flash was fired
"GeoPosition" latitude and longitude represented as a GeoPosition object "GPSDateTime" - image creation date and time registered by GPS
"ImageCount" number of frames in an animated PNG "RasterSize" raster dimensions "RedEyeCorrection" whether a red-eye correction was performed "Summary" summary of the file "SummarySlideView" slide-view summary of all frames - PNG supports a color palette of at most 256 colors, always storing colors at a resolution of 8 bits per color channel.
- "DisposalOperation" specifies how to dispose the current frame before creating the next frame. Possible values are:
-
"None" no disposal "Background" replace with a fully transparent black background "Previous" replace with the previous frame - "BlendOperation" specifies whether to alpha blend the next frame to the current frame, after disposal.
- Metadata elements:
-
"Exif" formatted Exif (Exchange image file format) "IPTC" formatted IPTC (International Press Telecommunications Council) "XMP" formatted XMP (Extensible metadata platform) "MetaInformation" combination of all formatted metadata present in the file - Raw metadata, as stored in the file, can be imported using "RawExif", "RawXMP" and "RawIPTC" elements which are returned in an association.
- All Exif and IPTC tags can be imported individually. Common tags include:
-
"ApertureValue" lens aperture "Artist" photographer or image creator "DateTime" image creation date and time "ExposureTime" exposure time, given in seconds "FlashInfo" - flash information: flash fired, red-eye correction, etc.
"FNumber" F number "FocalLength" actual focal length of the lens, given in millimeters "GPSAltitude" altitude of the GPS position "GPSLatitude" latitude of the GPS position "GPSLongitude" longitude of the GPS position "Make" manufacturer of the recording equipment "Model" model name or model number of the equipment "Software" name and version of the software or firmware of the camera or image input device used to generate the image
Options
- Import and Export options:
-
IncludeMetaInformation All metadata types to import and export "ImageTopOrientation" Automatic orientation of the image as stored in the file RasterSize Automatic dimensions of the image - Import option:
-
"TakeRows" {1,-1} rows to import - Export options:
-
ColorSpace Automatic color encoding to be used in the file "ColorMapLength" Automatic number of colors to use for quantization "Comments" None textual information CompressionLevel Automatic compression level, given as a number between 0 and 1 Dithering "FloydSteinberg" dithering algorithm used for generating the color-reduction table "QuantizationMethod" Automatic quantization method used by ColorQuantize - Use DitheringNone to perform no dithering.
- Supported ColorSpace settings are: "Grayscale" and "RGB". Using ColorSpace->Automatic, Export attempts to create a PNG file with the same color space.
- Export options for animated PNGs:
-
AnimationRepetitions Infinity how many times the animation plays before stopping "ControlAppearance" Automatic how Manipulate control elements are rendered in the exported file "DisplayDurations" Automatic display duration for each frame in seconds "Interlaced" False whether to store graphics in interlaced form to allow progressive rendering "RemoveDuplicatedFrames" False whether to remove duplicated frames - The following settings can be given for "ControlAppearance":
-
Automatic captures user controls exactly as seen in the notebook interface, using the style elements of the local computer system "Generic" renders graphical controls in a generic style None excludes control elements when exporting an animation - "DisplayDurations"->{d1,d2,…} specifies the display durations for each frame in an animated PNG.
Examples
open allclose allBasic Examples (4)
Scope (3)
Export a Wolfram Language expression to PNG:
Export a list of expressions to an animated PNG:
Export a Manipulate as an animated PNG:
Use Rasterize to export a screenshot of the Manipulate into a PNG file:
Import Elements (40)
Available Elements (4)
Data Representation (11)
"AnimatedImage" (1)
Import a multiframe PNG file as an AnimatedImage:
"ColorMap" (1)
"Graphics" (1)
Import as a Graphics object:
"Image" (1)
"ImageList" (1)
Get the data as a list of Image objects:
"RawData" (1)
Metadata (25)
"ColorProfileData" (1)
Get the embedded color profile, given as a ColorProfileData object:
The color profile is stored in the ColorSpace option of the imported image:
"ColorSpace" (1)
Get the color encoding used on export:
Use ImageColorSpace to get the color space of an imported image:
"Exif" (3)
"FlashUsed" (1)
"RasterSize" (1)
Get the dimensions of the image stored in the file:
Using ImageDimensions on an imported image gives the same result:
"RawExif" (1)
Import Options (6)
ImageResolution (1)
IncludeMetaInformation (3)
RasterSize (1)
Export Options (11)
"ControlAppearance" (1)
Specify whether the control menus in Manipulate should be exported as well:
CompressionLevel (1)
"ImageTopOrientation" (1)
By default, the upright image is exported using "ImageTopOrientation"->Top: