Main Content

imwrite

Write image to graphics file

Description

example

imwrite(A,filename) writes image data A to the file specified by filename, inferring the file format from the extension. imwrite creates the new file in your current folder. The bit depth of the output image depends on the data type of A and the file format. For most formats:

  • If A is of data type uint8, then imwrite outputs 8-bit values.

  • If A is of data type uint16 and the output file format supports 16-bit data (JPEG, PNG, and TIFF), then imwrite outputs 16-bit values. If the output file format does not support 16-bit data, then imwrite returns an error.

  • If A is a grayscale or RGB color image of data type double or single, then imwrite assumes that the dynamic range is [0, 1] and automatically scales the data by 255 before writing it to the file as 8-bit values. If the data in A is single, convert A to double before writing to a GIF or TIFF file.

  • If A is of data type logical, then imwrite assumes that the data is a binary image and writes it to the file with a bit depth of 1, if the format allows it. BMP, PNG, or TIFF formats accept binary images as input arrays.

If A contains indexed image data, you should additionally specify the map input argument.

example

imwrite(A,map,filename) writes the indexed image in A and its associated colormap map to the file specified by filename.

  • If A is an indexed image of data type double or single, then imwrite converts the indices to zero-based indices by subtracting 1 from each element, and then writes the data as uint8. If the data in A is single, convert A to double before writing to a GIF or TIFF file.

imwrite(___,fmt) writes the image in the format specified by fmt, regardless of the file extension in filename. You can specify fmt after the input arguments in any of the previous syntaxes.

example

imwrite(___,Name,Value) specifies additional parameters for output GIF, HDF, JPEG, PBM, PGM, PNG, PPM, and TIFF files, using one or more name-value arguments. For example, you can add a comment to an image in PNG format.

Examples

collapse all

Write a 50-by-50 array of grayscale values to a PNG file in the current folder.

A = rand(50);
imwrite(A,"myGray.png")

Write an indexed image array and its associated colormap to a PNG file.

Load sample image data from the file earth.mat.

load earth.mat

The image array X and its associated colormap map are loaded into the workspace.

Write the data to a new PNG file.

imwrite(X,map,"myearth.png")

imwrite creates the file myearth.png in your current folder.

View the new PNG file using imshow.

imshow("myearth.png")

Figure contains an axes object. The axes object contains an object of type image.

Write image data to a new PNG file with the built-in MATLAB® colormap copper.

Load sample image data from the file earth.mat.

load earth.mat

The image array X and its associated colormap map are loaded into the workspace. map is a matrix of 64 RGB vectors.

Create a copper-tone colormap with 64 RGB vectors. Then write the image data to a PNG file using the new colormap.

newmap = copper(64);
imwrite(X,newmap,"copperearth.png");

imwrite creates the file copperearth.png in your current folder.

View the new PNG file using imshow.

imshow("copperearth.png")

Figure contains an axes object. The axes object contains an object of type image.

Create and write truecolor image data to a JPEG file.

Create a 49-by-49-by-3 array of random RGB values.

A = rand(49,49,3);

Write the image data to a JPEG file. imwrite automatically chooses this format when you use the .jpg file extension. Add a comment to the file using the Comment name-value argument.

imwrite(A,"newImage.jpg","Comment","My JPEG file")

View information about the new file.

info = imfinfo("newImage.jpg");
info.ColorType
ans = 
'truecolor'
[info.Height,info.Width,info.NumberOfSamples,info.BitDepth]
ans = 1×4

    49    49     3    24

info.Comment
ans = 1x1 cell array
    {'My JPEG file'}

Write multiple images to a single multipage TIFF file.

Create two sets of random image data, im1 and im2.

im1 = rand(50,40,3);
im2 = rand(50,50,3);

Write the first image to a new TIFF file. Then, append the second image to the same file.

imwrite(im1,"myMultipageFile.tiff")
imwrite(im2,"myMultipageFile.tiff","WriteMode","append")

Draw a series of plots, capture them as images, and write them into one animated GIF file.

Plot y=xn for n=3.

x = 0:0.01:1;
n = 3;
y = x.^n;
plot(x,y,"LineWidth",3)
title("y = x^n,  n = " + num2str(n))

Figure contains an axes object. The axes object with title y = blank x toThePowerOf n, baseline blank blank n blank = blank 3 contains an object of type line.

Capture a series of plots for increasing values of n.

n = 1:0.5:5;
nImages = length(n);

fig = figure;
for idx = 1:nImages
    y = x.^n(idx);
    plot(x,y,"LineWidth",3)
    title("y = x^n,  n = " + num2str(n(idx)))
    drawnow
    frame = getframe(fig);
    im{idx} = frame2im(frame);
end
close;

Display the series of images in one figure.

figure;
for idx = 1:nImages
    subplot(3,3,idx)
    imshow(im{idx});
end

Figure contains 9 axes objects. Axes object 1 contains an object of type image. Axes object 2 contains an object of type image. Axes object 3 contains an object of type image. Axes object 4 contains an object of type image. Axes object 5 contains an object of type image. Axes object 6 contains an object of type image. Axes object 7 contains an object of type image. Axes object 8 contains an object of type image. Axes object 9 contains an object of type image.

Save the nine images into a GIF file. Because three-dimensional data is not supported for GIF files, call rgb2ind to convert the RGB data in the image to an indexed image A with a colormap map. To append multiple images to the first image, call imwrite with the name-value argument WriteMode set to "append".

filename = "testAnimated.gif"; % Specify the output file name
for idx = 1:nImages
    [A,map] = rgb2ind(im{idx},256);
    if idx == 1
        imwrite(A,map,filename,"gif","LoopCount",Inf,"DelayTime",1);
    else
        imwrite(A,map,filename,"gif","WriteMode","append","DelayTime",1);
    end
end

imwrite writes the GIF file to your current folder. Setting LoopCount to Inf causes the animation to loop continuously. Setting DelayTime to 1 specifies a 1-second delay between the display of each image in the animation.

Input Arguments

collapse all

Image data, specified as a full (nonsparse) matrix.

  • For grayscale images, A can be m-by-n.

  • For indexed images, A can be m-by-n. Specify the associated colormap in the map input argument.

  • For truecolor images, A must be m-by-n-by-3. imwrite does not support writing RGB images to GIF files.

For TIFF files, A can be an m-by-n-by-4 array containing color data that uses the CMYK color space.

For multiframe GIF files, A can be an m-by-n-by-1-by-p array containing grayscale or indexed images, where p is the number of frames to write. RGB images are not supported in this case.

Data Types: double | single | uint8 | uint16 | logical

Name of the output file, specified as a string scalar or character vector.

Depending on the location you are writing to, filename can take on one of these forms.

Location

Form

Current folder

To write to the current folder, specify the name of the file in filename.

filename must include the file extension. For a list of the image types that imwrite can write, see the description for the fmt input argument.

Example: "myImage.jpg"

Other folders

To write to a folder different from the current folder, specify the full or relative path name in filename.

Example: "C:\myFolder\myImage.ext"

Example: "\imgDir\myImage.ext"

Remote Location

To write to a remote location, filename must contain the full path of the file specified as a uniform resource locator (URL) of the form:

scheme_name://path_to_file/my_file.ext

Based on the remote location, scheme_name can be one of the values in this table.

Remote Locationscheme_name
Amazon S3™s3
Windows Azure® Blob Storagewasb, wasbs
HDFS™hdfs

For more information, see Work with Remote Data.

Example: "s3://bucketname/path_to_file/my_image.jpg"

Data Types: char | string

Colormap associated with indexed image data in A, specified as an m-by-3 array. map must be a valid MATLAB® colormap. See colormap for a list of built-in MATLAB colormaps. Most image file formats do not support colormaps with more than 256 entries.

Example: [0,0,0; 0.5,0.5,0.5; 1,1,1]

Example: jet(60)

Data Types: double

Format of the output file, specified as one of the formats in this table.

This table also summarizes the types of images that imwrite can write. The MATLAB file format registry determines which file formats are supported. See imformats for more information about this registry.

For certain formats, imwrite can accept additional name-value arguments. To view these arguments, click the linked format names below.

Value of fmt

Format of Output File

Description

"bmp"

Windows® Bitmap (BMP)

1-bit, 8-bit, and 24-bit uncompressed images

"gif"

GIF — Graphics Interchange Format

8-bit images

"hdf"

HDF4 — Hierarchical Data Format

8-bit raster image data sets with or without associated colormap, 24-bit raster image data sets

"jpg" or "jpeg"

JPEG — Joint Photographic Experts Group

8-bit, 12-bit, and 16-bit Baseline JPEG images

Note

imwrite converts indexed images to RGB before writing data to JPEG files, because the JPEG format does not support indexed images.

"jp2" or "jpx"

JPEG 2000— Joint Photographic Experts Group 2000

1-bit, 8-bit, and 16-bit JPEG 2000 images

"pbm"

Portable Bitmap (PBM)

Any 1-bit PBM image, ASCII (plain) or raw (binary) encoding

"pcx"

Windows Paintbrush (PCX)

8-bit images

"pgm"

Portable Graymap (PGM)

Any standard PGM image; ASCII (plain) encoded with arbitrary color depth; raw (binary) encoded with up to 16 bits per gray value

"png"

PNG — Portable Network Graphics

1-bit, 2-bit, 4-bit, 8-bit, and 16-bit grayscale images; 8-bit and 16-bit grayscale images with alpha channels; 1-bit, 2-bit, 4-bit, and 8-bit indexed images; 24-bit and 48-bit truecolor images; 24-bit and 48-bit truecolor images with alpha channels

Note

The imwrite function does not support writing of indexed PNG files that have insufficient colormap entries.

"pnm"

Portable Anymap (PNM)

Any of the PPM/PGM/PBM formats, chosen automatically

"ppm"

Portable Pixmap (PPM)

Any standard PPM image: ASCII (plain) encoded with arbitrary color depth or raw (binary) encoded with up to 16 bits per color component

"ras"

Sun® Raster (RAS)

Any RAS image, including 1-bit bitmap, 8-bit indexed, 24-bit truecolor, and 32-bit truecolor with alpha

"tif" or "tiff"

Tagged Image File Format (TIFF)

Baseline TIFF images, including:

  • 1-bit, 8-bit, 16-bit, 24-bit, and 48-bit uncompressed images and images with packbits, LZW, or Deflate compression

  • 1-bit images with CCITT 1D, Group 3, and Group 4 compression

  • CIELAB, ICCLAB, and CMYK images

"xwd"

X Windows Dump (XWD)

8-bit ZPixmaps

Name-Value Arguments

Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Example: imwrite(A,"myFile.png",BitDepth=8) writes the data in A using 8 bits to represent each pixel.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: imwrite(A,"myFile.png","BitDepth",8) writes the data in A using 8 bits to represent each pixel.

GIF — Graphics Interchange Format

collapse all

Color to use as background color for the indexed image, specified as a nonnegative integer scalar corresponding to the colormap index.

The background color is used for some disposal methods in animated GIFs.

  • If image data A is uint8 or logical, then the colormap index is zero-based.

  • If image data A is double, then the colormap index is one-based.

The default background color corresponds to the first color in the colormap.

Example: "BackgroundColor",15

Comment to add to the image, specified as a string scalar, a character vector, a 1-by-n string array, or a 1-by-n cell array of character vectors. For a string array or cell array of character vectors, imwrite adds a carriage return after each entry.

Example: "Comment",["Sample #314","January 5, 2013"]

Data Types: string | char | cell

Delay before displaying next image, in seconds, specified as a scalar value in the range [0, 655].

Tip

To achieve a high animation rate, set DelayTime to 0.02. Setting DelayTime to a lower value will slow down the actual animation rate in many image viewers and web browsers.

Example: "DelayTime",60

Disposal method of an animated GIF, specified as one of the methods in this table.

Value of DisposalMethod Result
"doNotSpecify" (default)Replace one full-size, nontransparent frame with another.
"leaveInPlace"Any pixels not covered up by the next frame continue to display.
"restoreBG"The background color or background tile shows through transparent pixels.
"restorePrevious"Restore to the state of a previous, undisposed frame.

Example: "DisposalMethod","restoreBG"

Offset of the screen relative to the image, measured from the top-left corner of each, specified as a two-element vector. The first vector element specifies the offset from the top, and the second element specifies the offset from the left, in pixels.

Example: "Location",[10,15]

Data Types: double

Number of times to repeat the animation, specified as either an integer in the range [0, 65,535] or the value Inf. If you specify the value 0, the animation plays once; if you specify the value 1, the animation plays twice, and so on. A LoopCount value of Inf causes the animation to loop continuously.

To enable animation within Microsoft® PowerPoint®, specify a value for LoopCount within the range [1, 65,535]. Some Microsoft applications interpret the value 0 to mean not to loop at all.

Example: "LoopCount",3

Height and width of the frame, specified as a two-element vector. You can use ScreenSize argument with Location to write frames to the image that are smaller than the whole frame. DisposalMethod determines the fill value for pixels outside the frame.

Example: "ScreenSize",[1000 1060]

Data Types: double

Color to use as transparent color for the image, specified as a nonnegative integer scalar corresponding to the colormap index.

  • If image data A is uint8 or logical, then indexing begins at 0.

  • If image data A is double, then indexing begins at 1.

Example: "TransparentColor",20

Writing mode, specified as "overwrite" or "append". In "overwrite" mode, imwrite overwrites an existing file, filename. In "append" mode, imwrite adds a single frame to the existing file.

Example: "WriteMode","append"

HDF4 — Hierarchical Data Format

collapse all

Compression scheme, specified as one of the options in this table.

Value of Compression Result
"none" (default)No compression
"jpeg"JPEG compression. Valid only for grayscale and RGB images.
"rle"Run-length encoding. Valid only for grayscale and indexed images.

Example: "Compression","jpeg"

Quality of the JPEG-compressed file, specified as a scalar in the range [0, 100], where 0 is lower quality and higher compression, and 100 is higher quality and lower compression. This parameter applies only if Compression is "jpeg".

Example: "Quality",25

Writing mode, specified as "overwrite" or "append". In "overwrite" mode, imwrite overwrites an existing file, filename. In "append" mode, imwrite adds a single frame to the existing file.

Example: "WriteMode","append"

JPEG — Joint Photographic Experts Group

collapse all

Number of bits per pixel, specified as a scalar.

  • For grayscale images, the BitDepth value can be 8, 12, or 16. The default value is 8. For 16-bit images, the Mode name-value argument must be "lossless".

  • For color images, the BitDepth value is the number of bits per plane, and can be 8 or 12. The default is 8 bits per plane.

Example: "BitDepth",12

Comment to add to the image, specified as a string scalar, a character vector, an n-by-1 string array, or an n-by-1 cell array of character vectors. For a string array or cell array of character vectors, imwrite writes each row of input as a comment in the JPEG file.

Example: "Comment",["First comment";"second comment";"third comment"]

Data Types: string | char | cell

Type of compression, specified as "lossy" or "lossless".

Example: "Mode","lossless"

Quality of the output file, specified as a scalar in the range [0, 100], where 0 is lower quality and higher compression, and 100 is higher quality and lower compression. A Quality value of 100 does not write a lossless JPEG image. Instead, set the Mode name-value argument to "lossless".

Example: "Quality",100

JPEG 2000— Joint Photographic Experts Group 2000

collapse all

Comment to add to the image, specified as a string scalar, a character vector, a string array, or a cell array of character vectors. For a string array or cell array of character vectors, imwrite writes each entry as a comment in the JPEG 2000 file, in column-major order.

Example: "Comment",["First comment";"second comment";"third comment"]

Example: "Comment",{'First comment','second comment','third comment'}

Data Types: string | char | cell

Target compression ratio, specified as a positive scalar greater than or equal to 1. The compression ratio is the ratio of the input image size to the output compressed size. For example, a value of 2 implies that the output image size is half of the input image size or less. A higher value implies a smaller file size and more reduced image quality. The compression ratio does not take into account the header size.

Specifying CompressionRatio is valid only when Mode is "lossy".

Example: "CompressionRatio",3

Type of compression, specified as "lossy" or "lossless".

Example: "Mode","lossless"

Order of packets in the code stream, specified as one of these options:

  • "LRCP"

  • "RLCP"

  • "RPCL"

  • "PCRL"

  • "CPRL"

The characters represent these packets: L = layer, R = resolution, C = component, and P = position.

Example: "ProgressionOrder","RLCP"

Number of quality layers, specified as an integer in the range [1, 20].

Example: "QualityLayers",8

Number of reduction levels, or wavelet decomposition levels, specified as an integer in the range [1, 8].

Example: "ReductionLevels",6

Tile height and width, specified as a two-element vector. The minimum size you can specify is [128 128].

Example: "TileSize",[130 130]

PBM, PGM, and PPM — Portable Bitmap, Graymap, Pixmap

collapse all

Encoding, specified as "rawbits" for binary encoding or "ASCII" for plain encoding.

Example: "Encoding","ASCII"

Maximum gray or color value, specified as a positive integer scalar.

Specify this name-value argument only for PGM and PPM files. For PBM files, this value is always 1.

If the image array is uint16, then the default value for MaxValue is 65535. Otherwise, the default value is 255.

Example: "MaxValue",510

PNG — Portable Network Graphics

collapse all

Transparency of each pixel, specified as a matrix of values in the range [0, 1]. The row and column dimensions of the Alpha matrix must be the same as those of the image data array. You can specify Alpha only for grayscale (m-by-n) and truecolor (m-by-n-by-3) image data.

Note

You cannot specify both Alpha and Transparency at the same time.

Data Types: double | uint8 | uint16

Author information, specified as a string scalar or character vector.

Example: "Author","Ann Smith"

Data Types: string | char

Background color when compositing transparent pixels, specified as a value dependent on the image data, as shown in this table.

Image TypeForm of Background Value
Grayscale imageScalar in the range [0, 1].
Indexed imageInteger in the range [1, P], where P is the colormap length. For example, "Background",50 sets the background color to the color specified by the 50th index in the colormap.
Truecolor imageThree-element vector of RGB intensities in the range [0, 1]. For example, "Background",[0 1 1] sets the background color to cyan.

Data Types: double

Number of bits per pixel, specified as a scalar. Depending on the output image, the scalar can be one of these values.

Image TypeAllowed Values for BitDepth
Grayscale image1, 2, 4, 8, or 16
Grayscale image with an alpha channel8 or 16
Indexed image1, 2, 4, or 8
Truecolor image8 or 16
  • If the image is of type double or uint8, then the default bit depth is 8 bits per pixel.

  • If the image is of type uint16, then the default is 16 bits per pixel.

  • If the image is of type logical, then the default is 1 bit per pixel.

Example: "BitDepth",4

Reference white point and primary chromaticities, specified as an eight-element vector of the form [wx wy rx ry gx gy bx by]. The elements wx and wy are the chromaticity coordinates of the white point, and the elements rx, ry, gx, gy, bx, and by are the chromaticity coordinates of red, green, and blue, respectively.

If you specify Chromaticities, you should also specify the Gamma name-value argument.

Example: "Chromaticities",[0.312,0.329,0.002,0.002,0.001,0.001,0.115,0.312]

Data Types: double

Comment to add to the image, specified as a string scalar or character vector.

Time of original image creation, specified as either a datetime, or a string scalar or character vector that represents a point in time. If you specify CreationTime as a datetime value with a time zone, then imwrite stores the time zone as part of the value.

Example: "CreationTime",datetime("1955-11-12 10:04 PM","TimeZone","America/Los_Angeles")

Description of the image, specified as a string scalar or character vector.

Legal disclaimer, specified as a string scalar or character vector.

File gamma, specified as a numeric scalar.

Example: "Gamma",2.2

Time of last image modification, specified as either a datetime, or a string scalar or character vector that represents a point in time. If you specify ImageModTime as a datetime value with a time zone other than UTC, then imwrite converts the value to UTC before storing it. If you specify ImageModTime as a datetime value without a time zone, then imwrite interprets the value as UTC.

The default ImageModTime value is the time when you call imwrite.

Example: "ImageModTime",datetime("2018-04-01 9:00 AM","TimeZone","Europe/Rome")

Interlacing scheme, specified as "none" for no interlacing or "adam7" to use the Adam7 algorithm.

Example: "InterlaceType","adam7"

Unit for image resolution, specified as "unknown" or "meter". If you specify ResolutionUnit, you must include at least one of the XResolution and YResolution name-value arguments. When the value of ResolutionUnit is "meter", the XResolution and YResolution values are interpreted as pixels per meter.

Example: "ResolutionUnit","meter","XResolution",1000

Number of bits in the data array to regard as significant, specified as a scalar or a vector in the range [1, BitDepth]. Depending on the output image type, the value must be in the following form.

Image TypeForm of SignificantBits Value
Grayscale image without an alpha channelScalar
Grayscale image with an alpha channel2-element vector
Indexed image3-element vector
Truecolor image without an alpha channel3-element vector
Truecolor image with an alpha channel4-element vector

Example: "SignificantBits",[2,3]

Software used to create the image, specified as a string scalar or character vector.

Device used to create the image, specified as a string scalar or character vector.

Pixels to consider transparent when no alpha channel is used, specified as a scalar or vector. Depending on the output image, the value must be in the following form.

Image TypeForm of Transparency Value
Grayscale imageScalar in the range [0, 1], indicating the grayscale color to be considered transparent.
Indexed imageQ-element vector of values in the range [0, 1], where Q is no larger than the colormap length and each value indicates the transparency associated with the corresponding colormap entry. In most cases, Q is 1.
Truecolor imageThree-element vector of RGB intensities in the range [0, 1], indicating the truecolor color to consider transparent.

Note

You cannot specify both Transparency and Alpha at the same time.

Example: "Transparency",[1 1 1]

Data Types: double

Warning of nature of content, specified as a string scalar or character vector.

Image resolution in the horizontal direction, in pixels/unit, specified as a numeric scalar. Define the unit by specifying the ResolutionUnit name-value argument.

If you do not also specify YResolution, then the XResolution value applies to both the horizontal and vertical directions.

Example: "XResolution",900

Image resolution in the vertical direction, in pixels/unit, specified as a numeric scalar. Define the unit by specifying the ResolutionUnit name-value argument.

If you do not also specify XResolution, then the YResolution value applies to both the vertical and horizontal directions.

Example: "YResolution",900

In addition to the listed name-value arguments for PNG, you can use any parameter name that satisfies the PNG specification for keywords. That is, the name uses only printable characters, contains 80 or fewer characters, and does not contain leading or trailing spaces. The value corresponding to these user-specified names must be a string scalar or character vector that contains no control characters other than linefeeds.

RAS — Sun Raster Graphic

collapse all

Transparency of each pixel, specified as a matrix with row and column dimensions the same as those of the image data array.

This name-value argument is valid only for truecolor (m-by-n-by-3) image data.

Data Types: double | single | uint8 | uint16

Image type, specified as one of the options in this table.

Value of TypeDescription
"standard" (default)Uncompressed, B-G-R color order for truecolor images
"rgb"Uncompressed, R-G-B color order for truecolor images
"rle"Run-length encoding of 1-bit and 8-bit images

Example: "Type","rgb"

TIFF — Tagged Image File Format

collapse all

Color space representing the color data, specified as "rgb", "cielab", or "icclab".

This name-value argument is valid only when the image data array, A, is truecolor (m-by-n-by-3). To use the CMYK color space in a TIFF file, do not use the ColorSpace name-value argument. Instead, specify an m-by-n-by-4 image data array.

imwrite can write color image data that uses the L*a*b* color space to TIFF files. The 1976 CIE L*a*b* specification defines numeric values that represent luminance (L*) and chrominance (a* and b*) information. To store L*a*b* color data in a TIFF file, the values must be encoded to fit into either 8-bit or 16-bit storage. imwrite can store L*a*b* color data in a TIFF file using these encodings:

  • CIELAB encodings — 8-bit and 16-bit encodings defined by the TIFF specification

  • ICCLAB encodings — 8-bit and 16-bit encodings defined by the International Color Consortium

The output class and encoding used by imwrite depends on the class of the input image data array and the ColorSpace value, as shown in this table. (The 8-bit and 16-bit CIELAB encodings cannot be input arrays because they use a mixture of signed and unsigned values and cannot be represented as a single MATLAB array.)

Input Class and Encoding

Value of ColorSpace

Output Class and Encoding

8-bit ICCLAB


Values are integers in the range [0, 255]. L* values are multiplied by 2.55.
128 is added to both the a* and b* values.

"icclab"

8-bit ICCLAB

"cielab"

8-bit CIELAB

16-bit ICCLAB


Values are integers in the range [0, 65,280]. L* values are multiplied by 652.8.
32768 is added to both the a* and b* values, which are represented as integers in the range [0, 65,535].

"icclab"

16-bit ICCLAB

"cielab"

16-bit CIELAB

Double-precision 1976 CIE L*a*b* values


L* is in the dynamic range [0, 100]. a* and b* can take any value. Setting a* and b* to 0 (zero) produces a neutral color (gray).

"icclab"

8-bit ICCLAB

"cielab"

8-bit CIELAB

Example: "ColorSpace","cielab"

Compression scheme, specified as one of these options:

  • "packbits" (default for nonbinary images)

  • "none"

  • "lzw"

  • "deflate"

  • "jpeg"

  • "ccitt" (binary images only, and the default for such images)

  • "fax3" (binary images only)

  • "fax4" (binary images only)

"jpeg" is a lossy compression scheme; other compression modes are lossless. Also, if you specify "jpeg" compression, you must specify the RowsPerStrip name-value argument and the value must be a multiple of 8.

Example: "Compression","none"

Image description, specified by a string scalar or character vector. This description is the text that imfinfo returns in the ImageDescription field for the output image.

Example: "Description","Sample 2A301"

X- and Y-resolution, specified as a scalar indicating both X-resolution and Y-resolution, or a two-element vector containing the X-resolution and the Y-resolution.

Example: "Resolution",80

Example: "Resolution",[320,72]

Data Types: double

Number of rows to include in each strip, specified as a scalar. The default value is such that each strip is about 8 kilobytes.

You must specify RowsPerStrip if you specify "jpeg" compression. In this case, the value must be a multiple of 8.

Example: "RowsPerStrip",16

Data Types: double | single | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Writing mode, specified as "overwrite" or "append". In "overwrite" mode, imwrite overwrites an existing file. In "append" mode, imwrite adds a page to the existing file.

Example: "WriteMode","append"

Extended Capabilities

Version History

Introduced before R2006a

expand all