How to save an image from imshow() as a .jpeg?

9 次查看(过去 30 天)
I am creating an RGB image and displaying using imshow(). Once the image is displayed, if I save the image as .jpeg, it gets a white background to it and the image dimensions change. How can I keep it to its original dimensions? Attached image is what I got when I saved it as a .jpeg file and the dimensions are 240x170. Whereas the original dimensions of the constituting matrices are 100x100.

采纳的回答

Walter Roberson
Walter Roberson 2017-3-18
编辑:Walter Roberson 2017-3-18
Have a look at print(), which pays attention to the figure PaperPosition* properties and to the figure InvertHardcopy property. It also allows a -r resolution option.
However, I would instead recommend using imwrite of the rgb matrix.

更多回答(1 个)

Dariush Ashtiani
Dariush Ashtiani 2018-10-3
You can use saveas commad. Say
filename='image1'; saveas(gcf,[filename,'.jpg'])

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by