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

6 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 4 Sep 2019
Edited: MathWorks Support Team on 4 Sep 2019
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

More Answers (0)

Tags

No tags entered yet.

Products


Release

R2009b

Community Treasure Hunt

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

Start Hunting!