removing edges (fractures) from lines

3 次查看(过去 30 天)
Dear fellows,
I try to export some plots as png files. But sadly all of them have these kind of edges within.
How can I remove these? Or avoid them?
  4 个评论
Shivam
Shivam 2024-1-6
Can you mention the settings done through "Property Inspector"?

请先登录,再进行评论。

回答(1 个)

Neelanshu
Neelanshu 2024-2-5
Hi math_man_rob,
I understand from your query that you are interested in removing the edges in the exported plots.
The issue you're experiencing might be related to the renderer, if you switch to the "painters" renderer the issue goes away as shown in the image attached below. This option works well for axes in a 2-D view. Furthermore, you can use "GraphicsSmoothing" to reduce the appearance of jagged lines in an axes graphic.
%% Using opengl renderer
plot([-10 :0.01 : 10], [-10 :0.01 : 10].^2)
set(gcf, 'Renderer', 'opengl');
exportgraphics(gcf, 'filename.png', 'Resolution', 1200);
%% Using painters renderer
plot([-10 :0.01 : 10], [-10 :0.01 : 10].^2)
set(gcf, 'Renderer', 'painters', 'GraphicsSmoothing', 'on');
exportgraphics(gcf, 'filename.png', 'Resolution', 1200);
Kindly provide the code and configuration of "Property Inspector" used for generation of the above plots for further help.
Besides, a set of user contributed functions, available at the MATLAB Central File Exchange, can be used to assist you with exporting graphics:
A collection of 4 functions to make it easier to export figures for publication can be found at:
You may also refer to the following MATLAB Answers post to learn more about exporting images of publication quality:
Hope this helps.

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by