Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
2.0.9
-
None
Description
Seeing that the appendRawCommand() methods are deprecated, it is necessary for PDPageContentStream to implement every PDF operator explicitly. This one is both simple and useful:
public void setTextRise(float rise) throws IOException {
writeOperand(rise);
writeOperator("Ts");
}