Package com.itextpdf.svg.processors
Interface ISvgConverterProperties
-
- All Known Implementing Classes:
SvgConverterProperties
public interface ISvgConverterProperties
Interface for the configuration classes used byISvgProcessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBaseUri()
Gets the base URI.java.lang.String
getCharset()
Get the name of the Charset to be used when decoding an InputStream.CssStyleSheet
getCssStyleSheet()
Gets the CSS style sheet.FontProvider
getFontProvider()
Gets the font provider.MediaDeviceDescription
getMediaDeviceDescription()
Gets the media device description.ISvgNodeRendererFactory
getRendererFactory()
Retrieve the factory responsible for creatingISvgNodeRenderer
IResourceRetriever
getResourceRetriever()
Gets the resource retriever.
-
-
-
Method Detail
-
getRendererFactory
ISvgNodeRendererFactory getRendererFactory()
Retrieve the factory responsible for creatingISvgNodeRenderer
- Returns:
- A
ISvgNodeRendererFactory
implementation
-
getFontProvider
FontProvider getFontProvider()
Gets the font provider.- Returns:
- the font provider
-
getCharset
java.lang.String getCharset()
Get the name of the Charset to be used when decoding an InputStream. This method is allowed to return null, in which caseUTF-8
will be used (by JSoup).Please be aware that this method is NOT used when handling a
String
variable in theSvgConverter
.- Returns:
- the String name of the
Charset
used for decoding
-
getBaseUri
java.lang.String getBaseUri()
Gets the base URI.- Returns:
- the base URI
-
getMediaDeviceDescription
MediaDeviceDescription getMediaDeviceDescription()
Gets the media device description.- Returns:
- the media device description
-
getResourceRetriever
IResourceRetriever getResourceRetriever()
Gets the resource retriever. The resourceRetriever is used to retrieve data from resources by URL.- Returns:
- the resource retriever
-
getCssStyleSheet
CssStyleSheet getCssStyleSheet()
Gets the CSS style sheet. Style sheet is used to apply CSS statements to elements.- Returns:
- the CSS style sheet
-
-