org.apache.batik.svggen.CachedImageHandlerBase64Encoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.fop Show documentation
Show all versions of org.apache.fop Show documentation
The core maven build properties
The newest version!
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.svggen;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.batik.ext.awt.image.spi.ImageWriter;
import org.apache.batik.ext.awt.image.spi.ImageWriterRegistry;
import org.apache.batik.util.Base64EncoderStream;
import org.w3c.dom.Element;
/**
* This subclass of {@link ImageHandlerBase64Encoder} implements
* functionality specific to the cached version of the image
* encoder.
*
* @author Paul Evenblij
* @version $Id: CachedImageHandlerBase64Encoder.java 1805419 2017-08-18 13:04:30Z ssteiner $
*/
public class CachedImageHandlerBase64Encoder extends DefaultCachedImageHandler {
/**
* Build a CachedImageHandlerBase64Encoder
instance.
*/
public CachedImageHandlerBase64Encoder() {
super();
setImageCacher(new ImageCacher.Embedded());
}
/**
* Creates an Element which can refer to an image.
* Note that no assumptions should be made by the caller about the
* corresponding SVG tag.
*/
public Element createElement(SVGGeneratorContext generatorContext) {
// Create a DOM Element in SVG namespace to refer to an image
// For this cached version we return
© 2015 - 2025 Weber Informatics LLC | Privacy Policy