📘
ピラミッドTIFFの作成において、ImageMagickがうまく動作しないケースがある?
概要
IIIFの画像配信に向けたピラミッドTIFFの作成において、ImageMagickがうまく動作しないケースがあり、調査してみました。
参考
以下のようなページで、変換方法が説明されています。
Using the VIPS command line
# For a 3-channel source image
vips tiffsave source_image.tif output_image.tif --tile --pyramid --compression jpeg --tile-width 256 --tile-height 256
# For a source image with an alpha channel
vips extract_band source_image.tif temp_image.v 0 --n 3 \
&& vips tiffsave temp_image.v output_image.tif --tile --pyramid --compression jpeg --tile-width 256 --tile-height 256 \
&& rm temp_image.v
Using ImageMagick
convert source_image.tif -alpha off \
-define tiff:tile-geometry=256x256 \
-define tiff:generate-pyramids=true \
-compress jpeg \
'ptif:output_image.tif'
対象データ
以下の画像を使用させていただきます。
『和泉国絵図』,写. 国立国会図書館デジタルコレクション https://dl.ndl.go.jp/pid/1286201 (参照 2025-03-11)
wget -O input.jpg https://dl.ndl.go.jp/api/iiif/1286201/R0000001/full/full/0/default.jpg
VIPS command line
変換します。
vips tiffsave input.jpg output_vips.tif --tile --pyramid --compression jpeg --tile-width 256 --tile-height 256
そして、以下で結果を確認します。
tiffinfo output_vips.tif
=== TIFF directory 0 ===
TIFF Directory at offset 0x962908 (9840904)
Image Width: 13300 Image Length: 10400
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Sample Format: unsigned integer
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 1 ===
TIFF Directory at offset 0xc8d468 (13161576)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 6650 Image Length: 5200
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 2 ===
TIFF Directory at offset 0xd74710 (14108432)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 3325 Image Length: 2600
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 3 ===
TIFF Directory at offset 0xdb5228 (14373416)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 1662 Image Length: 1300
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 4 ===
TIFF Directory at offset 0xdc72c4 (14447300)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 831 Image Length: 650
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 5 ===
TIFF Directory at offset 0xdcca76 (14469750)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 415 Image Length: 325
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
=== TIFF directory 6 ===
TIFF Directory at offset 0xdce62a (14476842)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 207 Image Length: 162
Tile Width: 256 Tile Length: 256
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: YCbCr
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
JPEG Tables: (574 bytes)
複数の TIFF ディレクトリ(レイヤー)が存在し、ピラミッドTIFF(多重解像度TIFF) として適切に作成されているようにみえます。
ImageMagick
変換します。
convert input.jpg -alpha off \
-define tiff:tile-geometry=256x256 \
-define tiff:generate-pyramids=true \
-compress jpeg \
'ptif:output_convert.tif'
そして、以下で結果を確認します。
tiffinfo output_convert.tif
=== TIFF directory 0 ===
TIFF Directory at offset 0x1989f46 (26779462)
Image Width: 13300 Image Length: 10400
Tile Width: 256 Tile Length: 256
Bits/Sample: 8
Compression Scheme: JPEG
Photometric Interpretation: RGB color
FillOrder: msb-to-lsb
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Planar Configuration: single image plane
Page Number: 0-1
White Point: 0.3127-0.329
PrimaryChromaticities: 0.640000,0.330000,0.300000,0.600000,0.150000,0.060000
JPEG Tables: (289 bytes)
TIFF directory 0 のみが存在し、ピラミッドTIFF(多重解像度TIFF) になっていない可能性が高そうです。
まとめ
ImageMagickのバージョンによって結果が変わりそうですが、確かにピラミッドTIFFを作成できないケースが確認できました。
具体的な原因まで確認できていませんが、VIPSなどの使用を検討する必要がありそうです。
中途半端な情報ですが、参考になりましたら幸いです。
Discussion