Generated by
JDiff

com.itextpdf.kernel.pdf.canvas Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.kernel.pdf.canvas as colored differences. Deletions are shown like 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.

Class PdfCanvas, PdfXObject addImage(ImageData, Rectangle, boolean)

Creates Image XObject from image and adds it to canvas. The created image will be fit inside on the specified rectangle without preserving aspect ratio.

The x, y, width and height parameters of the rectangle will be used in concatenating the transformation matrix as operands. @param image image image from which Image XObject will be created @param rect rect rectangle in which the created image will be fit @param asInline true if to add image as in-line. @return created XObject or null in case of in-line image (asInline = true). @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfXObject addImage(ImageData, float, float, boolean)

Creates Image XObject from image and adds it to canvas. @param image image image from which Image XObject will be created @param x x horizontal offset of the created image position @param y y vertical offset of the created image position @param asInline true if to add image as in-line. @return created XObject or null in case of in-line image (asInline = true).
Class PdfCanvas, PdfXObject addImage(ImageData, float, float, float, boolean)

Creates Image XObject from image and adds it to the specified position with specified width preserving aspect ratio.

The float arguments will be used in concatenating the transformation matrix as operand. @param image image image from which Image XObject will be created @param x x horizontal offset of the created image position @param y y vertical offset of the created image position @param width width width of the created image on the basis of which the image height will be calculated @param asInline true if to add image as in-line. @return created XObject or null in case of in-line image (asInline = true). @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfXObject addImage(ImageData, float, float, float, boolean, boolean)

Creates Image XObject from image and adds it to the specified position with specified width preserving aspect ratio.

The float arguments will be used in concatenating the transformation matrix as operand. @param image image image from which Image XObject will be created @param x x horizontal offset of the created image position @param y y vertical offset of the created image position @param height height height of the created image on the basis of which the image width will be calculated @param asInline true if to add image as in-line. @param dummy dummy flag to note that the method works with the height parameter as opposed to the method .addImage(ImageData, float, float, float, boolean). @return created XObject or null in case of in-line image (asInline = true). @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfXObject addImage(ImageData, float, float, float, float, float, float)

Creates Image XObject from image and adds it to canvas (as Image XObject).

The float arguments will be used in concatenating the transformation matrix as operands. @param image 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 @return created Image XObject. @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfXObject addImage(ImageData, float, float, float, float, float, float, boolean)

Creates Image XObject from image and adds it to canvas.

The float arguments will be used in concatenating the transformation matrix as operands. @param image 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 @param asInline true if to add image as in-line. @return created Image XObject or null in case of in-line image (asInline = true). @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfCanvas addXObject(PdfXObject, float, float)

Adds {@code PdfXObject} to the specified position. @param xObject xObject Image XObject to be added @param x x horizontal offset of the image position @param y y vertical offset of the image position @return current canvas.
Class PdfCanvas, PdfCanvas addXObject(PdfXObject, float, float, float)

Adds {@code PdfXObject} to the specified position with specified width preserving aspect ratio.

The float arguments will be used in concatenating the transformation matrix as operand. @param xObject xObject Image XObject to be added @param x x horizontal offset of the image position @param y y vertical offset of the image position @param width width width of the image on the basis of which the height will be calculated @return current canvas. @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfCanvas addXObject(PdfXObject, float, float, float, boolean)

Adds {@code PdfXObject} to the specified position with specified height preserving aspect ratio.

The float arguments will be used in concatenating the transformation matrix as operand. @param xObject xObject Image XObject to be added @param x x horizontal offset of the image position @param y y vertical offset of the image position @param height height height of the image on the basis of which the width will be calculated @param dummy dummy flag to note that the method works with the height parameter as opposed to the method .addXObject(PdfXObject, float, float, float) @return current canvas. @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfCanvas addXObject(PdfXObject, float, float, float, float, float, float)

Adds {@code PdfXObject} to canvas.

The float arguments will be used in concatenating the transformation matrix as operands. @param xObject 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 @return current canvas. @see #concatMatrix(double, double, double, double, double, double)

Class PdfCanvas, PdfCanvas concatMatrix(AffineTransform)

Concatenates the affine transformation matrix to the current matrix in the content stream managed by this Canvas. @param See also transform affine . transformation matrix to be concatenated to the current matrix @return current canvas @see #concatMatrix(double, double, double, double, double, double) @param transform @return current canvas
Class PdfCanvas, PdfCanvas paintShading(PdfShading)

Paints a shading object and adds it to the resources of this canvas @param shading shading a shading object to be painted @return current canvas.
Class PdfCanvas, PdfCanvas setLineCapStyle(int)

Sets the line cap style, the shape to be used at the ends of open subpaths when they are stroked. @param lineCapStyle lineCapStyle a line cap style to be set @return current canvas. @see PdfCanvasConstants.LineCapStyle for possible values.
Class PdfCanvas, PdfCanvas setLineJoinStyle(int)

Sets the line join style, the shape to be used at the corners of paths when they are stroked. @param lineJoinStyle lineJoinStyle a line join style to be set @return current canvas. @see PdfCanvasConstants.LineJoinStyle for possible values.
Class PdfCanvas, PdfCanvas setMiterLimit(float)

Sets the miter limit, a parameter specifying the maximum length a miter join may extend beyond the join point, relative to the angle of the line segments. @param miterLimit miterLimit a miter limit to be set @return current canvas.