| Method from com.lowagie.text.pdf.PdfGState Detail: |
public void setAlphaIsShape(boolean v) {
put(PdfName.AIS, v ? PdfBoolean.PDFTRUE : PdfBoolean.PDFFALSE);
}
The alpha source flag specifying whether the current soft mask
and alpha constant are to be interpreted as shape values (true)
or opacity values (false). |
public void setBlendMode(PdfName bm) {
put(PdfName.BM, bm);
}
The current blend mode to be used in the transparent imaging model. |
public void setFillOpacity(float n) {
put(PdfName.ca, new PdfNumber(n));
}
Sets the current stroking alpha constant, specifying the constant shape or
constant opacity value to be used for nonstroking operations in the transparent
imaging model. |
public void setOverPrintMode(int ov) {
put(PdfName.OPM, new PdfNumber(ov==0 ? 0 : 1));
}
Sets the flag whether to toggle knockout behavior for overprinted objects. |
public void setOverPrintNonStroking(boolean ov) {
put(PdfName.op, ov ? PdfBoolean.PDFTRUE : PdfBoolean.PDFFALSE);
}
Sets the flag whether to apply overprint for non stroking painting operations. |
public void setOverPrintStroking(boolean ov) {
put(PdfName.OP, ov ? PdfBoolean.PDFTRUE : PdfBoolean.PDFFALSE);
}
Sets the flag whether to apply overprint for stroking. |
public void setStrokeOpacity(float n) {
put(PdfName.CA, new PdfNumber(n));
}
Sets the current stroking alpha constant, specifying the constant shape or
constant opacity value to be used for stroking operations in the transparent
imaging model. |
public void setTextKnockout(boolean v) {
put(PdfName.TK, v ? PdfBoolean.PDFTRUE : PdfBoolean.PDFFALSE);
}
Determines the behavior of overlapping glyphs within a text object
in the transparent imaging model. |