Skip to content

Commit

Permalink
Convert multipage tiff
Browse files Browse the repository at this point in the history
  • Loading branch information
dpurge committed Dec 8, 2024
1 parent c6964ae commit 821e21f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions content/docs/other/books/snippets.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ $files = Get-ChildItem -Filter *.tif
$i=0; $files | %{$i++; magick $_.name ("page{0:d3}.png" -f $i)}
```

## Convert multipage TIFF to PNG

```pwsh
magick book.tiff img/page-%03d.png
```

## Merge two directories with images

```pwsh
Expand Down

0 comments on commit 821e21f

Please sign in to comment.