Main Content

print

Print figure or save to specific file format

Description

print(filename,formattype) saves the current figure to a file using the specified file format, such as print("BarPlot","-dpng"). If the file name does not include an extension, then print appends the appropriate one.

example

print(filename,formattype,formatoptions) specifies additional options that are available for some formats.

print prints the current figure to the default printer.

example

print(printer) specifies the printer. Specify the printer as a character vector or string containing the printer name preceded by -P, for example, "-Pmy printer". The printer must be set up on your system.

print(driver) specifies the driver. Use this option if you want to ensure that the printed output is either black and white or color.

print(printer,driver) specifies the printer and the driver.

print("-clipboard",clipboardformat) copies the current figure to the clipboard using the format specified by clipboardformat. You can paste the copied figure into other applications.

example

print(resize,___) maximizes the figure size to fill the page. Specify resize as "-bestfit" to preserve the figure's aspect ratio or "-fillpage" to ignore the aspect ratio. These options are valid only when saving to a page format (PDF, and PS) or printing to a printer. Use this option with any of the input arguments from the previous syntaxes.

example

print(resolution,___) uses the specified resolution. Specify the resolution as a string containing an integer value preceded by "-r", for example, "-r200". Use this option with any of the input arguments from the previous syntaxes.

example

print(contenttype,___) specifies the type of content to create as "-vector" (for vector graphics) or "-image" (for images).

print(fig,___) saves or prints the figure or Simulink® block diagram specified by fig.

example

cdata = print("-RGBImage"); returns the RGB image data for the current figure. This option differs from screen captures in that all printing features apply to the output. You can also specify the resolution, contenttype, and fig options with this syntax. However, you cannot specify a Simulink block diagram.

example

Examples

collapse all

Create a bar chart and print it to your system default printer. If you do not specify the figure to print, then print uses the current figure.

bar(1:10)
print

Create a plot and copy it to the system clipboard.

plot(1:10)
print("-clipboard","-dmeta")

You can paste the copied plot into other applications.

Create a plot and save it as a PNG image file.

bar(1:10)
print("BarPlot","-dpng")

print saves the plot as BarPlot.png.

Create a plot and save it as an Encapsulated PostScript® file.

bar(1:10)
print("BarPlot","-depsc")

print saves the plot as BarPlot.eps.

Save the current figure as an Encapsulated PostScript File and add a TIFF preview.

surf(peaks)
print("SurfacePlot","-depsc","-tiff")

Save a specific figure by passing its object variable to print.

fig = figure;
plot(1:10)
print(fig,"MySavedPlot","-dpng")

Alternatively, refer to a figure using the value of its Number property, which is the integer value that displays in the figure window title bar. For example, save the figure with Figure 2 displayed in the title bar. Precede the integer value by -f.

figure(2);
plot(1:10)
print("-f2","MySavedPlot","-dpng")

Save a surface plot to a PNG file. Set the PaperPositionMode property for the figure to "auto" so that it saves at the size displayed on the screen. Use "-r0" to save it with screen resolution.

surf(peaks)
set(gcf,"PaperPositionMode","auto")
print("PeaksSurface","-dpng","-r0")

Save a figure that fills the page using the "-fillpage" option.

bar([1 10 7 8 2 2 9 3 6])
print("FillPageFigure","-dpdf","-fillpage")

Return the RGB image data for a figure.

surf(peaks)
cdata = print("-RGBImage");

Display the image data at full resolution using imshow.

imshow(cdata)

Create a surface plot. Return the RGB image data for the figure and specify the image resolution. Then, convert the image data to a movie frame, F.

surf(peaks)
cdata = print("-RGBImage","-r120");
F = im2frame(cdata);

Input Arguments

collapse all

File name, specified as a string or character vector containing the desired file name and path.

Example: "My Saved Chart"

Example: "Folder\My Saved Chart"

Example: "My Saved Chart"

The maximum file name length, including the path, is operating system and file format specific. Typically, the file name should be no more than 126 characters, or if you include the path, then no more than 128 characters.

Data Types: char | string

File format, specified as one of the options in these tables.

Image File

An image file contains a pixel-based representation of figure. The size of the generated file depends on the figure, the format, and your system resolution. Images are widely used by web browsers and other applications that display graphics. However, they do not support transparency or scale well and you cannot modify individual graphics objects, such as lines and text, in other graphics applications.

This table lists the supported image formats.

OptionImage FormatCorresponding File Extension
"-djpeg"JPEG 24-bit.jpg
"-dpng"PNG 24-bit.png
"-dtiff"TIFF 24-bit (compressed).tif
"-dtiffn"TIFF 24-bit (not compressed).tif
"-dmeta"Enhanced metafile (Windows only).emf

Vector Graphics File

Vector graphics files store commands that redraw the figure. This type of format scales well, but can result in a large file. In some cases, vector graphics might contain stray lines or other visual artifacts. Some applications support extensive editing of vector graphics formats. However, some applications do not support editing beyond resizing the graphic. In general, try to make all the necessary changes while your figure is still in MATLAB®.

Typically, print generates vector graphics files that scale well when resized. For some complex figures, the files might contain embedded images instead. These images don't scale well, and the extent to which you can edit them in other applications is limited. To ensure that print creates all vector graphics content, specify the "-vector" input argument.

If you want output that has transparency, then create a vector graphics file using a Metafile, PDF, or SVG format. If you use an EPS format, then transparency is only supported for the figure and axes backgrounds. Image files do not support transparency, but will closely match what is shown on screen to give the appearance of transparency.

This table lists the supported vector graphics formats.

OptionVector Graphics FormatCorresponding File Extension
"-dpdf"Full page Portable Document Format (PDF) color.pdf
"-deps"Encapsulated PostScript (EPS) Level 3 black and white.eps
"-depsc"Encapsulated PostScript (EPS) Level 3 color.eps
"-deps2"Encapsulated PostScript (EPS) Level 2 black and white.eps
"-depsc2"Encapsulated PostScript (EPS) Level 2 color.eps
"-dmeta"Enhanced Metafile (Windows® only).emf
"-dsvg"SVG (Scalable Vector Graphics).svg

You cannot save Simulink block diagrams as EPS files.

Note

Only the PDF format uses the first two elements of the PaperPosition property. Other formats ignore these values.

Additional formatting options supported by some file formats, specified as one or more of these values:

  • "-tiff" — Include a TIFF preview (EPS files only).

  • "-loose" — Use a loose bounding box (EPS files only).

  • "-cmyk" — Use CMYK colors instead of RGB colors (EPS files only).

  • note: -append option removed because it was for .PS files only

Example: print("myfile","-deps","-tiff","-loose") saves the current figure to the file myfile.eps using a loose bounding box and includes a TIFF preview.

Printer name, specified as a character vector or string containing -P and the printer name.

Example: "-Pmy local printer"

Example: "-Pmy local printer"

If you do not specify a printer, then print uses the system default printer. If you want to set up a new printer or select a different default printer, use the operating system printer management utilities. Restart MATLAB if you do not see a printer that is set up already.

Data Types: char | string

Printer driver, specified as "-dwin", "-dwinc", "-dprn", or "-dprnc". If you do not specify a driver, then print uses the default driver for your operating system.

The option you use depends on your system, for example:

SystemDriverOutput
Windows"-dwin"Black and white
"-dwinc"Color
Linux® or Mac"-dprn" Black and white
"-dprnc"Color

Format copied to clipboard, specified as one of these options:

  • "-dmeta" — Enhanced metafile (Windows only)

  • "-dbitmap" — Image file (Windows and macOS)

  • "-dpdf" — PDF file (Windows and macOS)

Option to expand figure to fill page, specified as one of these values:

  • "-fillpage" — Maximize the size of the figure to fill the page. Leave a .25 inch margin on all sides of the page. The tick marks, layout, and aspect ratio of the figure might change.

  • "-bestfit" — Maximize the size of the figure to fill the page, but preserve the aspect ratio of the figure. The figure might not fill the entire page. This option leaves a minimum page margin of .25 inches.

Both options are valid only when printing a figure to a printer or saving to a page format such as PDF and PS. They are not valid for Simulink block diagrams.

Resolution, specified as a character vector or a string containing -r and an integer value indicating the resolution in dots per inch. For example, "-r300" sets the output resolution to 300 dots per inch. To specify screen resolution, use "-r0".

In general, using a higher resolution value yields higher-quality output, but at the cost of higher memory use and larger output files. The higher the resolution setting, the longer it takes to render your figure.

Specifying the resolution is useful when creating an image, and in some cases, when creating a vector graphics file. Some vector graphics files include image content which can be affected by the resolution. If the content contains all vector graphics—for example, if you specify the "-vector" option—then the resolution has no effect.

Note

Simulink printing does not support the resolution option. For higher quality output of Simulink models, use a vector format such as SVG or PDF.

Data Types: char | string

Content type, specified as "-image" or "-vector".

  • "-image" — Use this option when saving images.

  • "-vector" — Creates all vector graphics content in the output file. Specify this value for saving vector graphics files. For example:

    print("-vector","-deps","myVectorFile")

Note

If you save a file with the "-vector" option, you might encounter one or more of the following issues:

  • Longer rendering times

  • Incorrect arrangement of graphics objects in 3-D views

  • Stray lines

  • Lines that disappear if they are thinner than one pixel

If you do not specify the content type, then print selects a content type produce the output format requested. Some vector graphics formats, such as PDF and EPS, might contain nonvector (image) content.

Figure object or Simulink block diagram. You can refer to a figure using either its object variable name or using the figure number preceded by -f. For example, -f2 refers to the figure with a Number property value of 2. When specifying a Simulink block diagram, precede the model name with -s. Specify the current model using "-s".

You cannot save Simulink block diagrams as EPS files.

Output Arguments

collapse all

Image data, returned as an n-by-m-by-3 array. The size of the image data array depends on the PaperPosition property of the figure and the output resolution.

Limitations

  • In MATLAB Online™, print prints to a PDF instead of printing to a printer. However, you can save the figure as another type of file by specifying a filename.

  • When MATLAB is in no display mode, all Simulink printing functionality, including printing to a file, is turned off.

More About

collapse all

Tips

  • You can set properties of the figure to control some printing and saving parameters. This table lists properties of the figure related to printing and saving.

    Figure PropertyDescription
    PaperPositionSize of the printed or saved figure. If printing to a printer or a full-page output format, then this property also determines the figure location on the page.
    PaperPositionModeSpecifies whether to use the PaperPosition property or the size of the figure on the screen to set the size of the printed or saved figure.
    PaperOrientationFigure orientation on printed page.
    PaperTypeStandard printer paper size.
    PaperSizeCustom width and height of printer paper.
    PaperUnitsUnits for the PaperSize and PaperPosition properties.

  • If you are using a Linux or Mac system and get an error about an invalid or unrecognized printer, save the contents of the figure as a PDF file. For example:

    print("MyPlot.pdf","-dpdf")
    Then print the PDF file using an external PDF viewer.

Alternative Functionality

The exportgraphics function saves the contents of any axes, figure, chart that can be a child of a figure, tiled chart layout, or container such as a panel.

exportgraphics is a better alternative to the print function when you want to:

  • Save graphics displayed in an app or in MATLAB Online

  • Minimize the white space around the content

  • Save a PDF fragment with embeddable fonts

  • Save a multipage PDF (since R2021b)

  • Save a subset of the content in the figure

  • Control the background color without having to modify properties on the figure

The copygraphics function provides much of the same functionality as the exportgraphics function, except that it copies the content to your system clipboard instead of saving it to a file. Use this function to copy and paste content from MATLAB into other applications.

Version History

Introduced before R2006a

expand all