Package com.itextpdf.svg.processors
Interface ISvgConverterProperties
- All Known Implementing Classes:
-
SvgConverterProperties
public interface ISvgConverterProperties
Interface for the configuration classes used by
ISvgProcessor
-
Method Summary
Modifier and TypeMethodDescriptionGets the base URI.Get the name of the Charset to be used when decoding an InputStream.Gets the font provider.Gets the media device description.Retrieve the factory responsible for creatingISvgNodeRenderer
Gets the resource retriever.
-
Method Details
-
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
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
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
-