blob: f91d4a6d1f667e7119aa94f1f2f5204c65155f69 [file] [log] [blame]
/*
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 <a href="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a>
* @version $Id$
* @see org.apache.batik.svggen.SVGGraphics2D
* @see org.apache.batik.svggen.ImageHandlerJPEGEncoder
* @see org.apache.batik.svggen.ImageHandlerPNGEncoder
*/
public class ImageHandlerPNGEncoder extends AbstractImageHandlerEncoder {
/**
* @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);
}
/**
* @return the suffix used by this encoder. E.g., ".png" for
* ImageHandlerPNGEncoder.
*/
public final String getSuffix(){
return ".png";
}
/**
* @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
*/
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.
*/
public BufferedImage buildBufferedImage(Dimension size){
return new BufferedImage(size.width, size.height,
BufferedImage.TYPE_INT_ARGB);
}
}