Generated by
JDiff

com.itextpdf.pdfcleanup Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.pdfcleanup 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 LineDashPattern, constructor LineDashPattern(PdfArray, float)

Creates new LineDashPattern object. @param dashArray The dash array. See .getDashArray() @param dashPhase The dash phase. See .getDashPhase()
Class LineDashPattern, PdfArray getDashArray()

Getter for the dash array.

The dash array#s elements is number that specify the lengths of alternating dashes and gaps; the numbers are nonnegative. The elements are expressed in user space units. @return The dash array.

Class LineDashPattern, float getDashPhase()

Getter for the dash phase.

The dash phase shall specify the distance into the dash pattern at which to start the dash. The elements are expressed in user space units. @return The dash phase.

Class LineDashPattern, boolean isSolid()

Checks whether the dashed pattern is solid or not. It's solid when the size of a dash array is even and sum of all the units off in the array is 0. For example: [3 0 4 0 5 0 6 0] (sum is 0), [3 0 4 0 5 1] (sum is 1). @return is the dashed pattern solid or not
Class LineDashPattern, void setDashArray(PdfArray)

Setter for the dash array. See .getDashArray() @param dashArray New dash array.
Class LineDashPattern, void setDashPhase(float)

Setter for the dash phase. See .getDashArray() @param dashPhase New dash phase.

Class PdfCleanUpLocation, constructor PdfCleanUpLocation(int, Rectangle, Color)

Constructs a PdfCleanUpLocation object. @param page specifies the number of the page which the region belongs to. @param region represents the boundaries of the area to be erased. @param cleanUpColor a color used to fill the area after erasing it. If {@code null} the erased area left uncolored.
Class PdfCleanUpLocation, Color getCleanUpColor()

Returns a color used to fill the area after erasing it. If {@code null} the erased area left uncolored. @return a color used to fill the area after erasing it.

Class PdfCleanUpTool, void cleanUp()

Cleans the document by erasing all the areas which are either provided or extracted from redaction annotations. @throws IOException IOException
Class PdfCleanUpTool, double arcTolerance

Used as the criterion of a good approximation of rounded line joins and line caps. @deprecated
Class PdfCleanUpTool, double floatMultiplier

When a document with line arts is being cleaned up, there are lot of calculations with floating point numbers. All of them are translated into fixed point numbers by multiplying by this coefficient. Vary it to adjust the preciseness of the calculations. @deprecated