pdfSweep 5.0.1 API
|
Main entry point for cleaning a PDF document. More...
Static Public Member Functions |
|
static void | CleanUp (Stream inputPdf, Stream outputPdf, IList< iText.PdfCleanup.PdfCleanUpLocation > cleanUpLocations) |
Cleans the document by erasing all the areas which are provided. More... |
|
static void | CleanUp (Stream inputPdf, Stream outputPdf, IList< iText.PdfCleanup.PdfCleanUpLocation > cleanUpLocations, CleanUpProperties properties) |
Cleans the document by erasing all the areas which are provided. More... |
|
static void | CleanUp (PdfDocument pdfDocument, IList< iText.PdfCleanup.PdfCleanUpLocation > cleanUpLocations) |
Cleans the document by erasing all the areas which are provided. More... |
|
static void | CleanUp (PdfDocument pdfDocument, IList< iText.PdfCleanup.PdfCleanUpLocation > cleanUpLocations, CleanUpProperties properties) |
Cleans the document by erasing all the areas which are provided. More... |
|
static void | AutoSweepCleanUp (Stream inputPdf, Stream outputPdf, ICleanupStrategy strategy) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (Stream inputPdf, Stream outputPdf, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (Stream inputPdf, Stream outputPdf, ICleanupStrategy strategy, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (Stream inputPdf, Stream outputPdf, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfDocument pdfDocument, ICleanupStrategy strategy) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfDocument pdfDocument, ICleanupStrategy strategy, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfDocument pdfDocument, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfDocument pdfDocument, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfPage pdfPage, ICleanupStrategy strategy) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfPage pdfPage, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfPage pdfPage, ICleanupStrategy strategy, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | AutoSweepCleanUp (PdfPage pdfPage, ICleanupStrategy strategy, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations, CleanUpProperties properties) |
Perform cleanup of areas of interest based on a given cleanup strategy. More... |
|
static void | CleanUpRedactAnnotations (Stream inputPdf, Stream outputPdf) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
static void | CleanUpRedactAnnotations (Stream inputPdf, Stream outputPdf, CleanUpProperties properties) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
static void | CleanUpRedactAnnotations (PdfDocument pdfDocument) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
static void | CleanUpRedactAnnotations (PdfDocument pdfDocument, CleanUpProperties properties) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
static void | CleanUpRedactAnnotations (Stream inputPdf, Stream outputPdf, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations) |
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document. More... |
|
static void | CleanUpRedactAnnotations (PdfDocument pdfDocument, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations) |
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document. More... |
|
static void | CleanUpRedactAnnotations (Stream inputPdf, Stream outputPdf, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations, CleanUpProperties properties) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
static void | CleanUpRedactAnnotations (PdfDocument pdfDocument, IList< iText.PdfCleanup.PdfCleanUpLocation > additionalCleanUpLocations, CleanUpProperties properties) |
Cleans the document by erasing regions defined by redact annotations inside the document. More... |
|
Main entry point for cleaning a PDF document.
Main entry point for cleaning a PDF document. This class contains a series of static methods that accept PDF file as a System.IO.Stream or already opened iText.Kernel.Pdf.PdfDocument and performs erasing of data in regions specified by input arguments. The output can either be preserved in passed iText.Kernel.Pdf.PdfDocument with possibility to post-process the document, or in an System.IO.Stream in a form of a complete PDF file.
The important difference between overloads with InputStream/OutputStream parameters and iText.Kernel.Pdf.PdfDocument parameter is in the consumption of product license limits.
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
strategy | cleanup strategy to be used |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
strategy | cleanup strategy to be used |
properties | additional properties for cleanUp |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfPage | the iText.Kernel.Pdf.PdfPage to which cleaned up applies |
strategy | cleanup strategy to be used |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfPage | the iText.Kernel.Pdf.PdfPage to which cleaned up applies |
strategy | cleanup strategy to be used |
properties | additional properties for cleanUp |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfPage | the iText.Kernel.Pdf.PdfPage to which cleaned up applies |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfPage | the iText.Kernel.Pdf.PdfPage to which cleaned up applies |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
strategy | cleanup strategy to be used |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
strategy | cleanup strategy to be used |
properties | additional properties for cleanUp |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
|
inlinestatic |
Perform cleanup of areas of interest based on a given cleanup strategy.
Perform cleanup of areas of interest based on a given cleanup strategy. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
strategy | cleanup strategy to be used |
additionalCleanUpLocations | list of additional locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing all the areas which are provided.
Cleans the document by erasing all the areas which are provided. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
cleanUpLocations | list of locations to be cleaned up |
|
inlinestatic |
Cleans the document by erasing all the areas which are provided.
Cleans the document by erasing all the areas which are provided. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
cleanUpLocations | list of locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing all the areas which are provided.
Cleans the document by erasing all the areas which are provided. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
cleanUpLocations | list of locations to be cleaned up |
|
inlinestatic |
Cleans the document by erasing all the areas which are provided.
Cleans the document by erasing all the areas which are provided. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
cleanUpLocations | list of locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document.
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
additionalCleanUpLocations | list of locations to be cleaned up |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
pdfDocument | a document to which cleaned up applies |
additionalCleanUpLocations | list of locations to be cleaned up |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
properties | additional properties for cleanUp |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document.
Cleans the document by erasing regions defined by redact annotations and additional cleanup locations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
additionalCleanUpLocations | list of locations to be cleaned up |
|
inlinestatic |
Cleans the document by erasing regions defined by redact annotations inside the document.
Cleans the document by erasing regions defined by redact annotations inside the document. Note, use methods with InputStream/OutputStream params if you don't want to consume itext-core product license limits.
inputPdf | the pdf document InputStream to which cleaned up applies |
outputPdf | the cleaned up pdf document OutputStream |
additionalCleanUpLocations | list of locations to be cleaned up |
properties | additional properties for cleanUp |