Skip to content

Commit

Permalink
Bump iiif-processor to v5.1.2
Browse files Browse the repository at this point in the history
Add debugBorder and pageThreshold options to environment config
  • Loading branch information
mbklein committed Jan 14, 2025
1 parent 393259e commit 3518d31
Show file tree
Hide file tree
Showing 6 changed files with 1,063 additions and 793 deletions.
16 changes: 8 additions & 8 deletions dependencies/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion docs/pages/docs/source-images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,18 @@ vips extract_band source_image.tif temp_image.v 0 --n 3 \
### Using ImageMagick

```bash
convert source_image.tif -alpha off -define tiff:tile-geometry=256x256 -compress jpeg 'ptif:output_image.tif'
convert source_image.tif -alpha off \
-define tiff:tile-geometry=256x256 \
-define tiff:generate-pyramids=true \
-compress jpeg \
'ptif:output_image.tif'
```

### Using GraphicsMagick

```bash
gm convert source_image.tif -flatten \
-define tiff:tile-geometry=256x256 \
-compress jpeg \
'ptif:output_image.tif'
```
Loading

0 comments on commit 3518d31

Please sign in to comment.