wrong output image size using exportgraphics()
Show older comments
Description
I need to export a sequence of figures with specific size in pixel. The function exportgraphics() generates a file with dimensions almost as specified, but not exactly. How can I export a png file with exportgraphics with exact with and heigth in px?
how to reproduce the problem:
1) Export .png using print('-dpng'):
figure
surf(peaks)
output_size = [500 300];
resolution = 300;
set(gcf,'paperunits','inches','paperposition',[0 0 output_size/resolution]);
print('test.png','-dpng',['-r' num2str(resolution)]);
Produces a 500x300 px test.png file.
2) Export .png using exportgraphics(...,'Resolution',...):
figure
surf(peaks)
output_size = [500 300];
resolution = 300;
set(gcf,'Units','inches','Position',[0 0 output_size/resolution]);
exportgraphics(gcf,'test_exportgraphics.png','Resolution',resolution);
Produces a 497x277 px test_exportgraphics.png file.
1 Comment
Dimitrii Nikolaev
on 12 May 2020
Answers (2)
Jianeng Wang
on 16 Dec 2022
1 vote
I have a workaround for keeping the output image size the same from a sequence of figures.
You can use exportgraphics to output the images from figures first. Then imread those images, and set a specific image size you want (e.g., the 1st image's size). Next using imresize for each image to the specific image size. Finally imwrite the resized image with the same name when you exportgraphics to replace the existing image files.
Harsha Priya Daggubati
on 15 May 2020
Edited: Harsha Priya Daggubati
on 18 May 2020
0 votes
Hi,
This link gives idea about the customisation options available with exportgraphics method in MATLA 2020a.
3 Comments
Dimitrii Nikolaev
on 18 May 2020
Harsha Priya Daggubati
on 18 May 2020
Hi,
Even I get the png with 297X497X3 as dimensions.I guess this is the reason the size of the image will be approximately equal to specified size. Workaround would be saving the content as vector graphics and resize the resulting file as specified in the documentation.
I brought this issue to the notice of concerned people, will get back to you as soon as I get a response.
Harsha Priya Daggubati
on 19 May 2020
Hi,
Following my reply, Currently exportgraphics saves the content closely cropped around the onscreen size(factoring in the requested output resolution), control over the generated outputs' dimensions and how much cropping is performed is not supported as of now. It might be considered in future releases.
As of now to allow the required customisations, you can continue using print.
Categories
Find more on Printing and Saving 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!