Matlab figure unassembles in Visio/AI

8 次查看(过去 30 天)
I used matlab code to plot a 3D image. Then I want to copy the figure to Visio/AI for subsequent editing. My operation is: edit→Copy Figure. The settings are as follow.
However, when the copied figure is uncombined in Viso/AI, it get messy. The unaltered firgure is shown in the left, and the uncombined one is shown in the right.

回答(1 个)

Pratheek
Pratheek 2023-6-22
Hello Jiaji,
I understand that when you try to copy and paste an image, it may get disassembled. One possible reason for this is selecting the metafile format in the clipboard, which may lose information. It is recommended to choose the second option, which is preserve information.
Another workaround is to use the "saveas" function in MATLAB. This function allows you to save the image in a specific format, such as PNG or JPEG, ensuring that the image is preserved without any loss of information. By saving the image using the "saveas" function, you can then use it in other applications or insert it into documents without encountering the disassembly issue.
Here's an example of how to use the "saveas" function to save an image as a PNG file:
% Save the plot as a PNG image
saveas(gcf, '3D.png');
Then use this in Visio/AI.
Hope this helps you!

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by