Uses of Interface
org.apache.batik.transcoder.Transcoder
-
Packages that use Transcoder Package Description org.apache.batik.apps.rasterizer org.apache.batik.apps.svgpp org.apache.batik.test.svg 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.print org.apache.batik.transcoder.svg2svg org.apache.batik.transcoder.wmf.tosvg Contains all of the interfaces for transcoding WMF Metafiles to SVG. -
-
Uses of Transcoder in org.apache.batik.apps.rasterizer
Methods in org.apache.batik.apps.rasterizer that return Transcoder Modifier and Type Method Description protected Transcoder
DestinationType. getTranscoder()
Returns a transcoder object of the result image type.Methods in org.apache.batik.apps.rasterizer with parameters of type Transcoder Modifier and Type Method Description boolean
DefaultSVGConverterController. proceedWithComputedTask(Transcoder transcoder, java.util.Map hints, java.util.List sources, java.util.List dest)
Invoked when the rasterizer has computed the exact description of what it should do.boolean
Main. proceedWithComputedTask(Transcoder transcoder, java.util.Map hints, java.util.List sources, java.util.List dest)
boolean
SVGConverterController. proceedWithComputedTask(Transcoder transcoder, java.util.Map hints, java.util.List sources, java.util.List dest)
Invoked when the rasterizer has computed the exact description of what it should do.protected void
SVGConverter. transcode(SVGConverterSource inputFile, java.io.File outputFile, Transcoder transcoder)
Converts the input image to the result image. -
Uses of Transcoder in org.apache.batik.apps.svgpp
Fields in org.apache.batik.apps.svgpp declared as Transcoder Modifier and Type Field Description protected Transcoder
Main. transcoder
The transcoder. -
Uses of Transcoder in org.apache.batik.test.svg
Classes in org.apache.batik.test.svg that implement Transcoder Modifier and Type Class Description protected class
SVGRenderingAccuracyTest.InternalPNGTranscoder
Inner class which derives from the PNGTranscoder and calls the manipulateSVGDocument just before encoding happens. -
Uses of Transcoder in org.apache.batik.transcoder
Classes in org.apache.batik.transcoder that implement Transcoder Modifier and Type Class Description class
AbstractTranscoder
This class can be the base class of a transcoder which may support transcoding hints and/or error handler.class
SVGAbstractTranscoder
This class may be the base class of all transcoders which take an SVG document as input and which need to build a DOM tree.class
ToSVGAbstractTranscoder
This class allows to simplify the creation of a transcoder which transcodes to SVG content.class
XMLAbstractTranscoder
This class may be the base class of all transcoders which take an XML document as input and which need to build a DOM tree. -
Uses of Transcoder in org.apache.batik.transcoder.image
Classes in org.apache.batik.transcoder.image that implement Transcoder Modifier and Type Class Description class
ImageTranscoder
This class enables to transcode an input to an image of any format.class
JPEGTranscoder
This class is anImageTranscoder
that produces a JPEG image.class
PNGTranscoder
This class is anImageTranscoder
that produces a PNG image.class
TIFFTranscoder
This class is anImageTranscoder
that produces a TIFF image. -
Uses of Transcoder in org.apache.batik.transcoder.print
Classes in org.apache.batik.transcoder.print that implement Transcoder Modifier and Type Class Description class
PrintTranscoder
This class is aTranscoder
that prints SVG images.Methods in org.apache.batik.transcoder.print with parameters of type Transcoder Modifier and Type Method Description static void
PrintTranscoder. setTranscoderBooleanHint(Transcoder transcoder, java.lang.String property, TranscodingHints.Key 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. setTranscoderStringHint(Transcoder transcoder, java.lang.String property, TranscodingHints.Key key)
-
Uses of Transcoder in org.apache.batik.transcoder.svg2svg
Classes in org.apache.batik.transcoder.svg2svg that implement Transcoder Modifier and Type Class Description class
SVGTranscoder
This class is a trancoder from SVG to SVG. -
Uses of Transcoder in org.apache.batik.transcoder.wmf.tosvg
Classes in org.apache.batik.transcoder.wmf.tosvg that implement Transcoder Modifier and Type Class Description class
WMFTranscoder
This class implements theTranscoder
interface and can convert a WMF input document into an SVG document.
-