e672. 缩放,剪取,移动,翻转缓冲图像
Posted borter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e672. 缩放,剪取,移动,翻转缓冲图像相关的知识,希望对你有一定的参考价值。
AffineTransform tx = new AffineTransform(); tx.scale(scalex, scaley); tx.shear(shiftx, shifty); tx.translate(x, y); tx.rotate(radians, bufferedImage.getWidth()/2, bufferedImage.getHeight()/2); AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_BILINEAR); bufferedImage = op.filter(bufferedImage, null);
Related Examples |
以上是关于e672. 缩放,剪取,移动,翻转缓冲图像的主要内容,如果未能解决你的问题,请参考以下文章