save transparent .emf file from figure

7 visualizaciones (últimos 30 días)
Kenneth Kim
Kenneth Kim el 24 de Mzo. de 2016
Editada: Kenneth Kim el 17 de Mayo de 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?

Respuesta aceptada

Richard Quist
Richard Quist el 17 de Mayo de 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 comentario
Kenneth Kim
Kenneth Kim el 17 de Mayo de 2016
Editada: Kenneth Kim el 17 de Mayo de 2016
Richard,
This is a perfect answer that I've been looking for. I never tried to play with Inverthardcopy, which seems to be the key element. Thank you so much for your advice!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Printing and Saving en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by