mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 20:22:41 +00:00
69 lines
1.3 KiB
Markdown
69 lines
1.3 KiB
Markdown
croppa
|
|
======
|
|
|
|
Crop images
|
|
|
|
usage
|
|
-----
|
|
```
|
|
croppa: --input <input.png> --output <output.png> --x <x> --y <y> --width <width> --height <height>
|
|
options:
|
|
--dx <dx> (default: width)
|
|
--dy <dy> (default: height)
|
|
--rows <num rows> (default: 1)
|
|
--cols <num columns> (default: 1)
|
|
--verbose
|
|
```
|
|
|
|
Crop will extract one or more images from a master image.
|
|
|
|
mandatory arguments
|
|
-------------------
|
|
**--input** <input.png>
|
|
|
|
Specify the filename of the image to be resized.
|
|
|
|
**--output** <output.png>
|
|
|
|
Specify the filename of the resized image file.
|
|
|
|
**--width** <width>
|
|
|
|
Specify the width of the crop area in pixels.
|
|
|
|
**--height** <height>
|
|
|
|
Specify the height of the crop area in pixels.
|
|
|
|
**--x** <x>
|
|
|
|
Specify the x coordinate for the start of the crop in pixels.
|
|
|
|
**--y** <x>
|
|
|
|
Specify the y coordinate for the start of the crop in pixels.
|
|
|
|
|
|
options
|
|
-------
|
|
|
|
**--dx** <dx>
|
|
|
|
Specify the number of pixels added to x after each crop
|
|
|
|
**--dy** <dy>
|
|
|
|
Specify the number of pixels added to y after each crop
|
|
|
|
**--rows** <rows>
|
|
|
|
Specify the number rows of images that will be cropped (total number of images will be rows*cols)
|
|
|
|
**--cols** <cols>
|
|
|
|
Specify the number columns of images that will be cropped (total number of images will be rows*cols)
|
|
|
|
**--verbose**
|
|
|
|
Display debugging information
|