/*
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.Dimension;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
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;
This implementation of the abstract AbstractImageHandlerEncoder
class creates PNG images in the image directory and sets the
url pointing to that file in the xlink:href attributes of the
image elements it handles.
Author: Vincent Hardy See Also: Version: $Id: ImageHandlerPNGEncoder.java 1733416 2016-03-03 07:07:13Z gadams $
/**
* This implementation of the abstract AbstractImageHandlerEncoder
* class creates PNG images in the image directory and sets the
* url pointing to that file in the xlink:href attributes of the
* image elements it handles.
*
* @author <a href="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a>
* @version $Id: ImageHandlerPNGEncoder.java 1733416 2016-03-03 07:07:13Z gadams $
* @see org.apache.batik.svggen.SVGGraphics2D
* @see org.apache.batik.svggen.ImageHandlerJPEGEncoder
* @see org.apache.batik.svggen.ImageHandlerPNGEncoder
*/
public class ImageHandlerPNGEncoder extends AbstractImageHandlerEncoder {
Params: - imageDir – directory where this handler should generate images.
If null, an IllegalArgumentException is thrown.
- urlRoot – root for the urls that point to images created by this
image handler. If null, then the url corresponding to imageDir
is used.
/**
* @param imageDir directory where this handler should generate images.
* If null, an IllegalArgumentException is thrown.
* @param urlRoot root for the urls that point to images created by this
* image handler. If null, then the url corresponding to imageDir
* is used.
*/
public ImageHandlerPNGEncoder(String imageDir, String urlRoot)
throws SVGGraphics2DIOException {
super(imageDir, urlRoot);
}
Returns: the suffix used by this encoder. E.g., ".png" for
ImageHandlerPNGEncoder.
/**
* @return the suffix used by this encoder. E.g., ".png" for
* ImageHandlerPNGEncoder.
*/
public final String getSuffix(){
return ".png";
}
Returns: the prefix used by this encoder. E.g., "pngImage" for
ImageHandlerPNGEncoder.
/**
* @return the prefix used by this encoder. E.g., "pngImage" for
* ImageHandlerPNGEncoder.
*/
public final String getPrefix(){
return "pngImage";
}
Derived classes should implement this method and encode the input
BufferedImage as needed
/**
* Derived classes should implement this method and encode the input
* BufferedImage as needed
*/
public void encodeImage(BufferedImage buf, File imageFile)
throws SVGGraphics2DIOException {
try {
OutputStream os = new FileOutputStream(imageFile);
try {
ImageWriter writer = ImageWriterRegistry.getInstance()
.getWriterFor("image/png");
writer.writeImage(buf, os);
} finally {
os.close();
}
} catch (IOException e) {
throw new SVGGraphics2DIOException(ERR_WRITE+imageFile.getName());
}
}
This method creates a BufferedImage with an alpha channel, as this is
supported by PNG.
/**
* This method creates a BufferedImage with an alpha channel, as this is
* supported by PNG.
*/
public BufferedImage buildBufferedImage(Dimension size){
return new BufferedImage(size.width, size.height,
BufferedImage.TYPE_INT_ARGB);
}
}