码迷,mamicode.com
首页 > 移动开发 > 详细

e672. 缩放,剪取,移动,翻转缓冲图像

时间:2018-09-02 23:43:28      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:color   ffffff   new   shift   lex   nbsp   图像   getwidth   bsp   

 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. 缩放,剪取,移动,翻转缓冲图像

标签:color   ffffff   new   shift   lex   nbsp   图像   getwidth   bsp   

原文地址:https://www.cnblogs.com/borter/p/9575505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!