Here you can find the source of transformImage(BufferedImage image, AffineTransform transform)
Parameter | Description |
---|---|
image | image to transform |
transform | affine transform to apply |
private static BufferedImage transformImage(BufferedImage image, AffineTransform transform)
//package com.java2s; /*//from www. j a v a 2 s.c om * The Shepherd Project - A Mark-Recapture Framework * Copyright (C) 2011 Jason Holmberg * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import java.awt.geom.AffineTransform; import java.awt.image.AffineTransformOp; import java.awt.image.BufferedImage; public class Main { /** * Transforms an image according to the specified affine transform. * @param image image to transform * @param transform affine transform to apply * @return {@code BufferedImage} instance */ private static BufferedImage transformImage(BufferedImage image, AffineTransform transform) { AffineTransformOp op = new AffineTransformOp(transform, AffineTransformOp.TYPE_BICUBIC); BufferedImage img = op.createCompatibleDestImage(image, (image.getType() == BufferedImage.TYPE_BYTE_GRAY) ? image.getColorModel() : null); img = op.filter(image, img); return img; } }