Package com.itextpdf.svg.processors
Interface ISvgConverterProperties
-
- All Known Implementing Classes:
SvgConverterProperties
public interface ISvgConverterPropertiesInterface for the configuration classes used byISvgProcessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBaseUri()Gets the base URI.java.lang.StringgetCharset()Get the name of the Charset to be used when decoding an InputStream.CssStyleSheetgetCssStyleSheet()Gets the CSS style sheet.FontProvidergetFontProvider()Gets the font provider.MediaDeviceDescriptiongetMediaDeviceDescription()Gets the media device description.ISvgNodeRendererFactorygetRendererFactory()Retrieve the factory responsible for creatingISvgNodeRendererIResourceRetrievergetResourceRetriever()Gets the resource retriever.
-
-
-
Method Detail
-
getRendererFactory
ISvgNodeRendererFactory getRendererFactory()
Retrieve the factory responsible for creatingISvgNodeRenderer- Returns:
- A
ISvgNodeRendererFactoryimplementation
-
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-8will be used (by JSoup).Please be aware that this method is NOT used when handling a
Stringvariable in theSvgConverter.- Returns:
- the String name of the
Charsetused 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
-
-