I can not get how to crop image by specifying change of dimensions in percents. eg I'd like to use something like
crop u% (% from up) d% (down) l% (left) r% (right)
Then
.. crop 0% 10% %0 %0
-> cut off 10% of picture at bottom
... crop 0% 0% 0% 50%
-> cut off 50% picture from right side.
Is it possible? If not, what about to add this? it is only other way how to define crop parameters.
Thank, majkl
Crop in percent
Moderators: XnTriq, helmut, xnview
-
- Posts: 8705
- Joined: Sun Oct 12, 2003 6:47 pm
- Location: Frankfurt, Germany
Re: crop in percent
Cropping borders of an image can be done by resizing the canvas (open image, then menu "Image->canvas size"). Then you can specify the new size in pixel or percent. Depending on which side(s) you want to crop you select the position of the image.majkl wrote:I can not get how to crop image by specifying change of dimensions in percents. eg I'd like to use something like
crop u% (% from up) d% (down) l% (left) r% (right)
Then
.. crop 0% 10% %0 %0
-> cut off 10% of picture at bottom
... crop 0% 0% 0% 50%
-> cut off 50% picture from right side.
...
The above said refers to one image, for batch mode (Multi convert) the parameters are similar.
Perhaps this is what you're looking for...
Re: crop in percent
Definitely YES!Cropping borders of an image can be done by resizing the canvas (open image, then menu "Image->canvas size"). Then you can specify the new size in pixel or percent. Depending on which side(s) you want to crop you select the position of the image.
The above said refers to one image, for batch mode (Multi convert) the parameters are similar.
Perhaps this is what you're looking for...
Thanks, Helmut.