| Changed Methods |
Image
convertToImage(
InputStream,
PdfDocument
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an XObject that can then be used on the passed PdfDocument. |
Image
convertToImage(
InputStream,
PdfDocument
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an image that can then be used on the passed PdfDocument. |
PdfFormXObject
convertToXObject(
InputStream,
PdfDocument
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an XObject that can then be used on the passed PdfDocument. |
PdfFormXObject
convertToXObject(
InputStream,
PdfDocument
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an XObject that can then be used on the passed PdfDocument. |
PdfFormXObject
convertToXObject(
ISvgNodeRenderer,
PdfDocument
)
|
Documentation changed from old to new. |
This method draws a NodeRenderer tree to a canvas that is tied to the passed document. |
PdfFormXObject
convertToXObject(
String,
PdfDocument
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an XObject that can then be used on the passed PdfDocument. |
PdfFormXObject
convertToXObject(
String,
PdfDocument
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Converts a String containing valid SVG content to an XObject that can then be used on the passed PdfDocument. |
void
createPdf(
File,
File
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Converts SVG stored in a File to a PDF File, using specific ISvgConverterProperties. |
void
createPdf(
File,
File
,
ISvgConverterProperties
,
WriterProperties
)
|
Documentation changed from old to new. |
Converts SVG stored in a File to a PDF File, using specific ISvgConverterProperties and WriterProperties. |
void
createPdf(
InputStream,
OutputStream
,
WriterProperties
)
|
Documentation changed from old to new. |
Create a single page pdf containing the SVG on its page using the default processing and drawing logic |
void
createPdf(
InputStream,
OutputStream
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Create a single page pdf containing the SVG on its page using the default processing and drawing logic |
void
createPdf(
InputStream,
OutputStream
,
ISvgConverterProperties
,
WriterProperties
)
|
Documentation changed from old to new. |
Create a single page pdf containing the SVG on its page using the default processing and drawing logic |
void
drawOnDocument(
InputStream,
PdfDocument
,
int
)
|
Documentation changed from old to new. |
Draws a Stream containing valid SVG to a document, on a given page number ate the origni of the page. |
void
drawOnDocument(
InputStream,
PdfDocument
,
int
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Draws a Stream containing valid SVG to a document, on a given page number on the provided x and y coordinate. |
void
drawOnDocument(
InputStream,
PdfDocument
,
int
,
float
,
float
)
|
Documentation changed from old to new. |
Draws a Stream containing valid SVG to a document, on a given page number on the provided x and y coordinate. |
void
drawOnDocument(
InputStream,
PdfDocument
,
int
,
float
,
float
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Draws a Stream containing valid SVG to a document, on a given page number on the provided x and y coordinate. |
void
drawOnDocument(
String,
PdfDocument
,
int
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Draws a String containing valid SVG to a document, on a given page number on the provided x and y coordinate. |
void
drawOnDocument(
String,
PdfDocument
,
int
,
float
,
float
,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Draws a String containing valid SVG to a document, on a given page number on the provided x and y coordinate. |
INode
parse(
InputStream)
|
Documentation changed from old to new. |
Parse a Stream containing valid SVG into an XML DOM node, using the default JSoup XML parser. |
INode
parse(
InputStream,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Parse a Stream containing valid SVG into an XML DOM node, using the default JSoup XML parser. |
ISvgProcessorResult
parseAndProcess(
InputStream)
|
Documentation changed from old to new. |
Parse and process an Inputstream containing an SVG, using the default Svg processor (DefaultSvgProcessor) The parsing of the stream is done using UTF-8 as the default charset. |
ISvgProcessorResult
parseAndProcess(
InputStream,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Parse and process an Inputstream containing an SVG, using the default Svg processor (DefaultSvgProcessor) |
ISvgProcessorResult
process(
INode,
ISvgConverterProperties
)
|
Documentation changed from old to new. |
Use the default implementation of ISvgProcessor to convert an XML DOM tree to a node renderer tree. |