Is it possible to programmatically set the style sheet while printing in MATLAB 7.9 (R2009b)?

3 次查看(过去 30 天)
I would like to print figures directly from code and would like to use a pre-saved style sheet. When printing manually I can choose any pre-saved style sheet from print preview, I would like to do the same programmatically.

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2019-9-4
The ability to programmatically set the style sheet while printing is not available in MATLAB 7.9 (R2009b).
The following workaround shows how to save a print style sheet to a MAT file and then retrieve it for use when printing:
First, create a desired print style sheet:
1. create any figure and go to "Print Preview..." from the "File" menu.
2. specify your desired settings
3. close the print preview window (but not the figure window)
Now type the following into the MATLAB command window:
>> template = getprinttemplate(gcf)
Now save the variable 'template' into a MAT file called 'myprinttemplate':
>> save('myprinttemplate','template')
As written above, this will save the file to the current directory. You may want to move the file somewhere else though (such as a folder on the desktop)
Now that you have the desired print template saved, use the following code to print a figure:
>> load('myprinttemplate.mat') %loads the variable 'template'
>> setprinttemplate(gcf,template) %sets the print template for the current figure to be one you just loaded
>> print(gcf)%print the figure
Note two things in the code above:
1. The full path should be specified to LOAD if 'myprinttemplate' is not in the current directory
2. 'gcf' could be replaced by a handle to whatever figure you want to print

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

尚未输入任何标签。

产品


版本

R2009b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by