Main Content

print

Print figure or save to specific file format

Description

example

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.

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

example

print prints the current figure to the default printer.

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.

example

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 character vector or string containing an integer value preceded by -r, for example, '-r200'. Use this option with any of the input arguments from the previous syntaxes.

print(renderer,___) uses the specified renderer. Specify the renderer as either '-vector' or '-image'.

example

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, renderer, and fig options with this syntax. However, you cannot specify a Simulink block diagram.

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 character vector or string 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®.

If you set the Renderer property for the figure, then print uses that renderer when generating output. Otherwise, print chooses the appropriate renderer. 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 uses the vector graphics renderer, specify '-vector' as an input argument to the print function.

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.

Note

The default figure renderer is OpenGL®. If the figure renderer differs from the renderer used when generating output, some details of the saved figure can differ from the figure on the display. If necessary, you can make the displayed figure and the saved figure use the same renderer. Set the Renderer property for the figure or specify the renderer input argument to the print function.

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 and PS files only.

  • '-cmyk' — Use CMYK colors instead of RGB colors. EPS and PS files only.

  • '-append' — Append the figure to an existing PS file. PS files only.

Example: print('my file','-deps','-tiff','-loose') saves the current figure to the file my file.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"

To view a list of available printers, use this command:

[~,printers] = findprinters

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 or when using the OpenGL renderer with a vector graphics file format (since OpenGL produces an image even with vector formats). Specifying the resolution has no effect when using the Painters renderer with a vector graphics file format, since Painters produces a true vector graphics file that contains the commands that redraw the figure.

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

Graphics renderer, specified as '-image' or '-vector'.

  • '-image' — OpenGL renderer. Use this renderer when saving images. OpenGL produces an image even with vector formats, which might limit the extent to which you can edit the image in other applications.

  • '-vector' — Creates vector graphics output. Use this renderer when saving vector graphics files. If you save to a vector graphics file and if the figure RendererMode property is set to 'auto', then print automatically attempts to create vector graphics. If you want to ensure that your output format is a true vector graphics file, then specify the '-vector' option. 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 renderer, then print automatically uses the appropriate renderer to produce the output format requested. However, if you set the Renderer property for the figure, then print uses that renderer when generating output.

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.

Note

Starting in R2015b, if you use print with the '-r0' option on a high-resolution system, then the size of the cdata output array is larger than in previous releases or on other systems. Also, the number of elements in cdata might not match the size of the figure in pixels based on the figure’s PaperPosition property and the root’s ScreenPixelsPerInch property. For more information, see DPI-Aware Behavior in MATLAB.

Limitations

  • Starting MATLAB in no display mode on Linux or using the -noFigureWindows startup option on any platform has these limitations for print:

    • Printing or saving figures with visible uicontrols errors.

    • Always uses the painters renderer, even if you specify the '-image' option.

  • In MATLAB Online™, print only prints to PDF. For additional file format options, save the figure to a 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

Current Figure

The current figure is typically the last figure that you create or click with the mouse. User interaction can change the current figure.

To print a specific figure, specify the figure as the first input argument. If you do not specify a figure, then the print function acts on the figure returned by gcbf. If gcbf returns empty, then print acts on the figure returned by gcf.

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.
    InvertHardcopySpecifies whether to use the current background color of the figure or to change the background color to white when printing or saving the 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.

  • If you print a figure that has a callback defined for the SizeChangedFcn property and if the output size differs from the size of the figure on the screen, then the print function displays a warning message. To avoid the warning message, set the PaperPositionMode property for the figure to 'auto'.

Alternative Functionality

Since in R2020a

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. This function provides 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