how to save plot with its background color without the gray color
Show older comments
Hello guys
Here i wanted to save a plot having an orange background color. An example code is shown below:
b_col = [255, 150, 0]; % orange color code
b_col = b_col./255;
plot(rand(10,1));
set(gca,'color',b_col);
set(gcf,'inverthardcopy','off');
print('test','-djpeg','-r900')
The above code result in a plot with orange background color, however, when i save it contains a gray color surrownding it as shown in the test image file below. At this point i needed a support in removing a gray color but instead replaced by white color.

Thanks for your supporting
Accepted Answer
More Answers (1)
Image Analyst
on 16 Apr 2022
0 votes
Try exportgraphics() instead of print().
3 Comments
TESFALEM ALDADA
on 16 Apr 2022
Image Analyst
on 16 Apr 2022
@TESFALEM ALDADA, you forgot to list your version when you posted. You must have an old version. exportgraphics() was introduced in r2020a.
TESFALEM ALDADA
on 17 Apr 2022
Edited: TESFALEM ALDADA
on 17 Apr 2022
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!