mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
magick: add page (#3653)
This commit is contained in:
parent
2846a9bd65
commit
18cf84a641
1 changed files with 24 additions and 0 deletions
24
pages/common/magick.md
Normal file
24
pages/common/magick.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# ImageMagick
|
||||
|
||||
> Create, edit, compose, or convert bitmap images.
|
||||
> More information: <https://imagemagick.org/>.
|
||||
|
||||
- Convert file type:
|
||||
|
||||
`magick {{image.png}} {{image.jpg}}`
|
||||
|
||||
- Resize an image, making a new copy:
|
||||
|
||||
`magick convert -resize {{100x100}} {{image.jpg}} {{image.jpg}}`
|
||||
|
||||
- Create a GIF using images:
|
||||
|
||||
`magick {{*.jpg}} {{images.gif}}`
|
||||
|
||||
- Create checkerboard pattern:
|
||||
|
||||
`magick -size {{640x480}} pattern:checkerboard {{checkerboard.png}}`
|
||||
|
||||
- Convert images to individual PDF pages:
|
||||
|
||||
`magick {{*.jpg}} +adjoin {{page-%d.pdf}}`
|
Loading…
Add table
Reference in a new issue