Clear Filters
Clear Filters

removing edges (fractures) from lines

4 views (last 30 days)
math_man_rob
math_man_rob on 21 Feb 2022
Answered: Neelanshu on 5 Feb 2024
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 Comments
Shivam
Shivam on 6 Jan 2024
Can you mention the settings done through "Property Inspector"?

Sign in to comment.

Answers (1)

Neelanshu
Neelanshu on 5 Feb 2024
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.

Categories

Find more on Printing and Saving in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!