compare,convert,identify,import,magick,mogrify,montage: update page (#10850)

This commit is contained in:
Lena
2023-10-05 08:52:40 +02:00
committed by GitHub
parent 06af42cd0f
commit 1bec8f7247
7 changed files with 48 additions and 45 deletions

View File

@@ -1,6 +1,7 @@
# identify
> Command-line utility of Image Magick project to describe the format and characteristics of one or more image files.
> Describe the format and characteristics of one or more image files.
> Part of ImageMagick.
> More information: <https://imagemagick.org/script/identify.php>.
- Describe the format and basic characteristics of an image:
@@ -11,6 +12,6 @@
`identify -verbose {{path/to/image}}`
- Collect dimensions of all JPEG files under current directory:
- Collect dimensions of all JPEG files in the current directory and save them into a CSV file:
`identify -format "%f,%w,%h\n" *.{{jpg}} > {{path/to/filelist.csv}}`
`identify -format "{{%f,%w,%h\n}}" {{*.jpg}} > {{path/to/filelist.csv}}`