|
Generated by JDiff |
||||||||
| PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES | |||||||||
This file contains all the changes in documentation in the packagecom.itextpdf.kernel.pdf.canvasas colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.
Updates current transformation matrix.
The third columnDetailed explanation ofwill{@codealways[abeb[0c0d1e f]} parameters of transformation matrix can be found in Matrix documentation. @param a element at (1,1) of the transformation matrix @param b element at (1,2) of the transformation matrix @param c element at (2,1) of the transformation matrix @param d element at (2,2) of the transformation matrix @param e element at (3,1) of the transformation matrix @param f element at (3,2) of the transformation matrix
Creates PdfImageXObject from image and adds it to canvas.Class PdfCanvas, PdfXObject addImageWithTransformationMatrix(ImageData, float, float, float, float, float, float, boolean)The float arguments will be used in concatenating the transformation matrix as operands.
Detailed explanation of {@code [a b c d e f]} parameters of transformation matrix can be found in Matrix documentation. @param image the image from which PdfImageXObject will be created @param a an element of the transformation matrix @param b an element of the transformation matrix @param c an element of the transformation matrix @param d an element of the transformation matrix @param e an element of the transformation matrix @param f an element of the transformation
matrixmatrix @return the created imageXObject or null in case of in-line image (asInline = true)@see #concatMatrix(double, double, double, double, double, double)
Creates PdfImageXObject from image and adds it to canvas.Class PdfCanvas, void addInlineImage(PdfImageXObject, float, float, float, float, float, float)The float arguments will be used in concatenating the transformation matrix as operands.
Detailed explanation of {@code [a b c d e f]} parameters of transformation matrix can be found in Matrix documentation. @param image the image from which PdfImageXObject will be created @param a an element of the transformation matrix @param b an element of the transformation matrix @param c an element of the transformation matrix @param d an element of the transformation matrix @param e an element of the transformation matrix @param f an element of the transformation matrix @param asInline true if to add image as in-
lineline @return the created imageXObject or null in case of in-line image (asInline = true)@see #concatMatrix(double, double, double, double, double, double)
Adds {@code PdfImageXObject} to canvas.Class PdfCanvas, PdfCanvas addXObjectWithTransformationMatrix(PdfXObject, float, float, float, float, float, float)Detailed explanation of {@code [a b c d e f]} parameters of transformation matrix can be found in Matrix documentation. @param imageXObject the {@code PdfImageXObject} object @param a an element of the transformation matrix @param b an element of the transformation matrix @param c an element of the transformation matrix @param d an element of the transformation matrix @param e an element of the transformation matrix @param f an element of the transformation matrix
Adds PdfXObject to canvas.Class PdfCanvas, PdfCanvas concatMatrix(double, double, double, double, double, double)The float arguments will be used in concatenating the transformation matrix as operands.
Detailed explanation of {@code [a b c d e f]} parameters of transformation matrix can be found in Matrix documentation. @param xObject the xObject to add @param a an element of the transformation matrix @param b an element of the transformation matrix @param c an element of the transformation matrix @param d an element of the transformation matrix @param e an element of the transformation matrix @param f an element of the transformation
matrixmatrix @return the currentcanvascanvas @see #concatMatrix(double, double, double, double, double, double)
Concatenates the 2x3 affine transformation matrix to the currentClass PdfCanvas, PdfCanvas setTextMatrix(AffineTransform)matrixmatrix inthethe content stream managed by this Canvas.
ContrastDetailed explanation of {@code [a b c d e f]} parameters of transformation matrix can be foundwithinPdfCanvas.setTextMatrixMatrix documentation. @param a operand 1,1 in the matrix. @param b operand 1,2 in the matrix. @param c operand 2,1 in the matrix. @param d operand 2,2 in the matrix. @param e operand 3,1 in the matrix. @param f operand 3,2 in the matrix. @return current canvas
Replaces the text matrix.Class PdfCanvas, PdfCanvas setTextMatrix(float, float, float, float, float, float)Contrast with PdfCanvas.concatMatrix@param transform new textmatrix as transformation @return current canvas
Replaces the text matrix.Detailed explanation of {@code [a b c d e f]} parameters of transformation matrix can
Contrastbewithfound inPdfCanvas.concatMatrixMatrix documentation. @param a operand 1,1 in the matrix. @param b operand 1,2 in the matrix. @param c operand 2,1 in the matrix. @param d operand 2,2 in the matrix. @paramxe operand 3,1 in the matrix. @paramyf operand 3,2 in the matrix. @return current canvas.