org.xhtmlrenderer.swing.ImageReplacedElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flying-saucer-core Show documentation
Show all versions of flying-saucer-core Show documentation
Flying Saucer is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code as well as Java2D output.
/*
* {{{ header & license
* Copyright (c) 2007 Wisconsin Court System
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* }}}
*/
package org.xhtmlrenderer.swing;
import org.xhtmlrenderer.extend.ReplacedElement;
import org.xhtmlrenderer.layout.LayoutContext;
import org.xhtmlrenderer.util.Configuration;
import org.xhtmlrenderer.util.ImageUtil;
import java.awt.*;
import java.awt.image.BufferedImage;
/**
* An ImageReplacedElement is a {@link ReplacedElement} that contains a {@link java.awt.Image}. It's used as a
* container for images included within XML being rendered. The image contained is immutable.
*/
public class ImageReplacedElement implements ReplacedElement {
protected Image _image;
private Point _location = new Point(0, 0);
protected ImageReplacedElement() {
}
/**
* Creates a new ImageReplacedElement and scales it to the size specified if either width or height has a valid
* value (values are greater than -1), otherwise original size is preserved. The idea is that the image was loaded at
* a certain size (that's the Image instance here) and that at the time we create the ImageReplacedElement
* we have a target W/H we want to use.
*
* @param image An image.
* @param targetWidth The width we'd like the image to have, in pixels.
* @param targetHeight The height we'd like the image to have, in pixels.
*/
public ImageReplacedElement(Image image, int targetWidth, int targetHeight) {
if (targetWidth > 0 || targetHeight > 0) {
int w = image.getWidth(null);
int h = image.getHeight(null);
int newW = targetWidth;
int newH = targetHeight;
if (newW == -1) {
newW = (int)(w * ((double)newH / h));
}
if (newH == -1) {
newH = (int)(h * ((double)newW / w));
}
if (w != newW || h != newH) {
if (image instanceof BufferedImage) {
image = ImageUtil.getScaledInstance((BufferedImage) image, newW, newH);
} else {
String scalingType = Configuration.valueFor("xr.image.scale", "HIGH").trim() ;
if(scalingType.equalsIgnoreCase("HIGH") || scalingType.equalsIgnoreCase("MID") ){
image = image.getScaledInstance(newW, newH, Image.SCALE_SMOOTH);
} else{
image = image.getScaledInstance(newW, newH, Image.SCALE_FAST);
}
}
}
}
_image = image;
}
public void detach(LayoutContext c) {
// nothing to do in this case
}
public int getIntrinsicHeight() {
return _image.getHeight(null);
}
public int getIntrinsicWidth() {
return _image.getWidth(null);
}
public Point getLocation() {
return _location;
}
public boolean isRequiresInteractivePaint() {
return true;
}
public void setLocation(int x, int y) {
_location = new Point(x, y);
}
/**
* The image we're replacing
*/
public Image getImage() {
return _image;
}
public int getBaseline() {
return 0;
}
public boolean hasBaseline() {
return false;
}
}