save transparent .emf file from figure
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kenneth Kim
am 24 Mär. 2016
Bearbeitet: Kenneth Kim
am 17 Mai 2016
I'm using 2015b version and would like to save a transparent .emf file from Matlab plot. However, when I export .emf file, the background is white.(I know about copy options with transparency, however, want to save .fig files in a batch process and then save .emf files manually.) How can I sole this issue?
0 Kommentare
Akzeptierte Antwort
Richard Quist
am 17 Mai 2016
Set the figure background Color to 'none' and the Inverthardcopy property to 'off' before calling the print command:
f = figure;
plot(rand(4));
set(f, 'Color', 'none', 'Inverthardcopy', 'off');
print(f, '-dmeta', 'transparent.emf');
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!