package net.coobird.thumbnailator.resizers; import java.awt.Graphics; import java.awt.RenderingHints; import java.awt.RenderingHints.Key; import java.awt.image.BufferedImage; import java.util.Collections; import java.util.Map; /** * A {@link Resizer} which does not actually resize the image. *

* The source image will be drawn at the origin of the destination image. * * @author coobird * @since 0.4.0 * */ public class NullResizer extends AbstractResizer { /** * Instantiates the {@code NullResizer} which draws the source image at * the origin of the destination image. */ public NullResizer() { this( RenderingHints.VALUE_INTERPOLATION_BILINEAR, Collections.emptyMap() ); } /** * This constructor is {@code private} to prevent the rendering hints * from being set, as this {@link Resizer} does not perform any resizing. * * @param interpolationValue Not used. * @param hints Not used. */ private NullResizer(Object interpolationValue, Map hints) { super(interpolationValue, hints); } public void resize(BufferedImage srcImage, BufferedImage destImage) { super.performChecks(srcImage, destImage); Graphics g = destImage.getGraphics(); g.drawImage(srcImage, 0, 0, null); g.dispose(); } }