本文,给大家带来Matlab快速入门中的另一篇,打印图像。关于打印,给出Matlab中的帮助文档如下:
>> help print
print Print or save a figure or model.
A subset of the available options is presented below. For more details
see the documentation.
print, by itself, prints the current figure to your default printer.
Use the -s option to print the current model instead of the current figure.
print % print the current figure to the default printer
print -s % print the current model to the default printer
print(filename, formattype) saves the current figure to a file in the
specified format. Vector graphics, such as PDF ('-dpdf'), and encapsulated
PostScript ('-depsc'), as well as images such as JPEG ('-djpeg') and PNG ('-dpng')
can be created. Use '-d' to specify the formattype option
print(fig, '-dPDF', 'myfigure.pdf'); % save to the 'myfigure.pdf' file
The full list of formats is documented here.
print(printer, ...) prints the figure or model to the specified printer.
Use '-P' to specify the printer option.
print(fig, '-Pmyprinter'); % print to the printer named 'myprinter'
print(resize,...) resizes the figure to fit the page when printing.
The resize options are valid only for figures, and only for page
formats (PDF, and PS) and printers. Specify resize as either
'-bestfit' to preserve the figure's aspect ratio or
'-fillpage' to ignore the aspect ratio.
The documentation contains additonal details and examples, including how to
specify the figure or model to print, adjust the output size and
resolution, save to the clipboard, and specify the renderer to use.
打印概述
可以在与计算机连接的打印机上直接打印 MATLAB® 图窗,也可以将图窗导出到 MATLAB 支持的某种标准图形文件格式。打印和导出图窗有两种方法:
- 使用文件菜单下的打印、打印预览或导出设置 GUI 选项。
- 使用
print
命令即可通过命令行来打印或导出图窗。
使用 print
命令可以更好地控制驱动程序和文件格式。使用“打印预览”对话框可以更好地控制图窗大小、比例、位置和页面标题。
从“文件”菜单打印
文件菜单下包含两个与打印相关的菜单选项:
- 打印预览选项可显示一个对话框,用于在预览输出页面时设置要打印的图窗的布局和图窗样式,您可以从此对话框打印图窗。此对话框包含以前包含在“页面设置”对话框中的选项。
- 打印选项可显示一个对话框,用于选择打印机、选择标准打印选项和打印图窗。
使用打印预览可以确定打印输出是否符合您的要求。点击“打印预览”对话框上的帮助按钮将显示如何设置页面的信息。
将图窗导出到图形文件
文件菜单中的导出设置选项可打开一个 GUI,用于设置要保存为图形文件的图窗的文本大小、字体和样式等图形特征。“导出设置”对话框用于定义和应用模板以便自定义和标准化输出。设置之后,您可以将图窗导出为多种标准图形文件格式,例如 EPS、PNG 和 TIFF。
使用 Print 命令
print
命令为发送给打印机的输出类型提供了更大灵活性,并且允许您通过函数和脚本文件来控制打印。结果可以直接发送到默认打印机,也可以存储在特定的输出文件中。可以使用多种输出格式,包括 TIFF、JPEG 和 PNG。
例如,此语句将当前图窗窗口的内容作为 PNG 图形存储在名为 magicsquare.png
的文件中。
print -dpng magicsquare.png
要以屏幕上的图窗的同等大小保存图窗,请使用下列语句:
set(gcf,'PaperPositionMode','auto')
print -dpng -r0 magicsquare.png
要将同一图窗存储为 TIFF 文件(分辨率为 200 dpi),请使用以下命令:
print -dtiff -r200 magicsquare.tiff
如果在命令行中键入 print
print
将在默认打印机上打印当前图窗。
转载文章,原文出处:MathWorks官网,由古哥整理发布
如若转载,请注明出处:https://iymark.com/articles/3436.html