Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 797 Bytes

Geoserver_Geotiff_with_alpha_band_and_jpeg_compression.md

File metadata and controls

21 lines (15 loc) · 797 Bytes

Geotiff with alpha band and jpeg compression

Geoserver doesn't support Geotiff with alpha band and jpeg compression made with GDAL. (Needs funding to be done)

Example which is prone to fail :

gdal_translate -co COMPRESS=JPEG -co JPEG_QUALITY=75 in.tif out.tif

Workaround: use a mask

gdal_translate -co COMPRESS=JPEG -co JPEG_QUALITY=75 -b 1 -b 2 -b 3 -mask 4 -co PHOTOMETRIC=YCBCR --config GDAL_TIFF_INTERNAL_MASK YES in.tif out.tif

References:


Created on 2023-03-31 by Sylvain Poulain