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,17 +1,17 @@
# import
> Capture some or all of an X server screen, and save the image to a file.
> Part of the ImageMagick library.
> Part of ImageMagick.
> More information: <https://imagemagick.org/script/import.php>.
- Capture the entire X server screen in the PostScript image format:
- Capture the entire X server screen into a PostScript file:
`import -window root {{output.postscript}}`
`import -window root {{path/to/output.ps}}`
- Capture contents of a remote X server screen in the PNG format:
- Capture contents of a remote X server screen into a PNG image:
`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{output.png}}`
`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{path/to/output.png}}`
- Capture a specific window, given its ID as displayed by `xwininfo`, into the JPEG format:
- Capture a specific window given its ID as displayed by `xwininfo` into a JPEG image:
`import -window {{window_id}} {{output.jpg}}`
`import -window {{window_id}} {{path/to/output.jpg}}`