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.