Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.

Are you a Java Developer working with PDF files?

Find out why you should be using JPedal

How does a decodeArray work?

31 sec read

When you create an image in a PDF file it is possible to specify that it is inverted or control the range of values. You do this by using the decodeArray. This consists of 2 values for each colour element – a minimum and a maximum. So for a gray colorspace you might see

decodeArray [0.0 1.0]

while CMYK would have

decodeArray [0.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0]

It can also be defined as an 8 bit value ( decodeArray [0 254])

This allows control over the allowable values and out of range values will be set to the minimum or maximum. If you reverse these the image can be inverted (ie decodeArray [1.0 0.0]) which is a neat little trick. You can also do some simple image processing with it.

Where it can get slightly tricky is that you can also apply a decoder Array to a Mask on an image – I’ll leave you to figure this one out…



Our software libraries allow you to

Convert PDF to HTML in Java
Convert PDF Forms to HTML5 in Java
Convert PDF Documents to an image in Java
Work with PDF Documents in Java
Read and Write AVIF, HEIC, WEBP and other image formats
Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.