I am trying to use shading in itextpdf. I want my rectangle (here named position) to change from gray to transparent. This is the code I have written but it does not work : it seems that new BaseColor(255,255,255,0) behaves as BaseColor.WHITE. Any idea ?
//Create a shading object with cell-specific coords
PdfShading shading = PdfShading.simpleAxial(w,
position.getLeft(),
position.getBottom(),
position.getRight(),
position.getTop(),
BaseColor.GRAY,
new BaseColor(255,255,255,0));
A PDF shading by itself creates a shading of opaque colors.
If you want a shading in transparency, you can create a mask; in the mask template you use a shading, e.g. from white to black. In its use as mask this creates the effect of a shading opaque to transparent. With the mask active you then draw a gray rectangle. The effect is a shading from opaque gray to transparent gray.
Using iText I showed something similar in this answer. The image there
is a radial shading opaque red to somewhat transparent red and has been created by this code:
(TestTransparency.java)
Your shading should be implemented in a similar manner.