|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TranscodingHints.Key | |
org.apache.batik.transcoder | Contains all of the interfaces for transcoding an input stream or a document to a particular ouput format. |
org.apache.batik.transcoder.image | Provides transcoders for transcoding a SVG document fragment to an image. |
org.apache.batik.transcoder.keys | |
org.apache.batik.transcoder.print | |
org.apache.batik.transcoder.svg2svg |
Uses of TranscodingHints.Key in org.apache.batik.transcoder |
Fields in org.apache.batik.transcoder declared as TranscodingHints.Key | |
static TranscodingHints.Key |
XMLAbstractTranscoder.KEY_XML_PARSER_CLASSNAME
XML parser classname key. |
static TranscodingHints.Key |
XMLAbstractTranscoder.KEY_XML_PARSER_VALIDATING
The validation mode of the XML parser. |
static TranscodingHints.Key |
XMLAbstractTranscoder.KEY_DOCUMENT_ELEMENT
Document element key. |
static TranscodingHints.Key |
XMLAbstractTranscoder.KEY_DOCUMENT_ELEMENT_NAMESPACE_URI
Document element namespace URI key. |
static TranscodingHints.Key |
XMLAbstractTranscoder.KEY_DOM_IMPLEMENTATION
DOM Implementation key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_WIDTH
The image width key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_HEIGHT
The image height key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_AOI
The area of interest key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_LANGUAGE
The language key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_MEDIA
The media key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_ALTERNATE_STYLESHEET
The alternate stylesheet key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_USER_STYLESHEET_URI
The user stylesheet URI key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_PIXEL_UNIT_TO_MILLIMETER
The number of millimeters in each pixel key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_PIXEL_TO_MM
Deprecated. As of Batik Version 1.5b3 |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_EXECUTE_ONLOAD
The 'onload' execution key. |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_ALLOWED_SCRIPT_TYPES
The set of supported script languages (i.e., the set of possible values for the <script> tag's type attribute). |
static TranscodingHints.Key |
SVGAbstractTranscoder.KEY_CONSTRAIN_SCRIPT_ORIGIN
Controls whether or not scripts can only be loaded from the same location as the document which references them. |
Methods in org.apache.batik.transcoder with parameters of type TranscodingHints.Key | |
void |
TranscoderSupport.addTranscodingHint(TranscodingHints.Key key,
java.lang.Object value)
Sets the value of a single preference for the transcoding process. |
void |
TranscoderSupport.removeTranscodingHint(TranscodingHints.Key key)
Removes the value of a single preference for the transcoding process. |
void |
Transcoder.addTranscodingHint(TranscodingHints.Key key,
java.lang.Object value)
Sets the value of a single preference for the transcoding process. |
void |
Transcoder.removeTranscodingHint(TranscodingHints.Key key)
Removes the value of a single preference for the transcoding process. |
Uses of TranscodingHints.Key in org.apache.batik.transcoder.image |
Fields in org.apache.batik.transcoder.image declared as TranscodingHints.Key | |
static TranscodingHints.Key |
ImageTranscoder.KEY_BACKGROUND_COLOR
The image background paint key. |
static TranscodingHints.Key |
ImageTranscoder.KEY_FORCE_TRANSPARENT_WHITE
The forceTransparentWhite key. |
static TranscodingHints.Key |
JPEGTranscoder.KEY_QUALITY
The encoder quality factor key. |
static TranscodingHints.Key |
TIFFTranscoder.KEY_FORCE_TRANSPARENT_WHITE
The forceTransparentWhite key. |
static TranscodingHints.Key |
PNGTranscoder.KEY_GAMMA
The gamma correction key. |
static TranscodingHints.Key |
PNGTranscoder.KEY_INDEXED
The write a 256 color indexed image key. |
Uses of TranscodingHints.Key in org.apache.batik.transcoder.keys |
Subclasses of TranscodingHints.Key in org.apache.batik.transcoder.keys | |
class |
BooleanKey
A transcoding Key represented as a boolean. |
class |
DOMImplementationKey
A transcoding Key represented as a DOMImplementation. |
class |
FloatKey
A transcoding Key represented as a float. |
class |
IntegerKey
A transcoding Key represented as an int. |
class |
LengthKey
A transcoding Key represented as a length. |
class |
PaintKey
A transcoding Key represented as a background paint. |
class |
Rectangle2DKey
A transcoding Key represented as a rectangle. |
class |
StringKey
A transcoding Key represented as a string. |
Uses of TranscodingHints.Key in org.apache.batik.transcoder.print |
Fields in org.apache.batik.transcoder.print declared as TranscodingHints.Key | |
static TranscodingHints.Key |
PrintTranscoder.KEY_SHOW_PAGE_DIALOG
The showPageDialog key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_SHOW_PRINTER_DIALOG
The showPrinterDialog key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_PAGE_WIDTH
The pageWidth key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_PAGE_HEIGHT
The pageHeight key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_MARGIN_TOP
The marginTop key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_MARGIN_RIGHT
The marginRight key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_MARGIN_BOTTOM
The marginBottom key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_MARGIN_LEFT
The marginLeft key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_PAGE_ORIENTATION
The pageOrientation key. |
static TranscodingHints.Key |
PrintTranscoder.KEY_SCALE_TO_PAGE
The scaleToPage key. |
Methods in org.apache.batik.transcoder.print with parameters of type TranscodingHints.Key | |
static void |
PrintTranscoder.setTranscoderFloatHint(Transcoder transcoder,
java.lang.String property,
TranscodingHints.Key key)
|
static void |
PrintTranscoder.setTranscoderRectangleHint(Transcoder transcoder,
java.lang.String property,
TranscodingHints.Key key)
|
static void |
PrintTranscoder.setTranscoderBooleanHint(Transcoder transcoder,
java.lang.String property,
TranscodingHints.Key key)
|
static void |
PrintTranscoder.setTranscoderStringHint(Transcoder transcoder,
java.lang.String property,
TranscodingHints.Key key)
|
Uses of TranscodingHints.Key in org.apache.batik.transcoder.svg2svg |
Subclasses of TranscodingHints.Key in org.apache.batik.transcoder.svg2svg | |
protected static class |
SVGTranscoder.DoctypeKey
To represent a doctype key. |
protected static class |
SVGTranscoder.NewlineKey
To represent a newline key. |
Fields in org.apache.batik.transcoder.svg2svg declared as TranscodingHints.Key | |
static TranscodingHints.Key |
SVGTranscoder.KEY_NEWLINE
The key to specify the newline character sequence. |
static TranscodingHints.Key |
SVGTranscoder.KEY_FORMAT
The key to specify whether to format the input. |
static TranscodingHints.Key |
SVGTranscoder.KEY_TABULATION_WIDTH
The key to specify the tabulation width. |
static TranscodingHints.Key |
SVGTranscoder.KEY_DOCUMENT_WIDTH
The key to specify the document width. |
static TranscodingHints.Key |
SVGTranscoder.KEY_DOCTYPE
The key to specify the doctype option. |
static TranscodingHints.Key |
SVGTranscoder.KEY_PUBLIC_ID
The key to specify the public id. |
static TranscodingHints.Key |
SVGTranscoder.KEY_SYSTEM_ID
The key to specify the system id. |
static TranscodingHints.Key |
SVGTranscoder.KEY_XML_DECLARATION
The key to specify the XML declaration option. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |