摘要: /** * 缩放 */ public static void zoomByScale(BufferedImage bufImage, double scale) throws IOException { //获取缩放后的长和宽 int _width = (int) (scale * bufImage.getWidth()); ... 阅读全文
posted @ 2019-03-26 11:38 yangyuxiaozi 阅读(1197) 评论(0) 推荐(0) 编辑