how to crop figures from excess white area

69 visualizzazioni (ultimi 30 giorni)
i have a wind rose figure (see attachment) and I'm trying to get rid of white space around image. Preferably to control how there is white space around given image. If I try to fiddle with figure property inspector, it just resizes image and wont reduce excess space.
basically, I want able to crop image like this:

Risposta accettata

Devon
Devon il 10 Nov 2023
Modificato: Devon il 10 Nov 2023
There are a couple of settings in the properties of the fig that deal with this. Overview of the properties are: https://www.mathworks.com/help/matlab/ref/matlab.ui.figure-properties.html
I was able to use the MATLAB command line to change the padding around the image.
figure = openfig("example.fig")
This will save all of the properties of example.fig to figure. You can then look at some position values to get location and size of the image area specified as a vector of the form [left bottom width height].
A couple of theses are Position, OuterPosition, InnerPostion. I am using Position for this example. I want to first get the current info:
figure.Position
ans =
600 600 230 280
I then want to set the width and height:
figure.Position = [600 600 200 200]
This preserves the plot dimensions and sets the padding to 200 pixes on each side. You can see the before and after:
This will still be not quite suare since the width and height values do not take into account the title space, but the borders are reduced.
  3 Commenti
Devon
Devon il 13 Nov 2023
Modificato: Devon il 13 Nov 2023
You would need to save as a jpg or similar image format first.
The figure window itself cannot be cropped. It is a tool for dynamic viewing and modifications of plots. You can zoom in on a region of the plot, but not crop beyond that.
Sven Larsen
Sven Larsen il 14 Nov 2023
Thank you for this information, it was very helpful! No I know cropping the figure via properties is not possible (the way I wanted), so I will write cropping code with imcrop.

Accedi per commentare.

Più risposte (1)

William Rose
William Rose il 10 Nov 2023
@Sven Larsen, One can reduce the whitespace by clicking and dragging the edgesof the image window so that it more closely matches the aspect ratio of the contents. With this approach I was able to get the attached result, saving the image as a .fig file. It is still not as tight as you would like. To reduce the whitespace more, I would save it in a different format, such as bmp, then use an external editor to crop as desired. See attached.
  3 Commenti
Dyuman Joshi
Dyuman Joshi il 12 Nov 2023
@Sven Larsen, Could you share the code that produces this figure?
Sven Larsen
Sven Larsen il 12 Nov 2023
https://www.mathworks.com/matlabcentral/fileexchange/47248-wind-rose

Accedi per commentare.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by