国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

JAVA中圖片文件的縮放

2019-11-18 14:29:28
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

  需要對(duì)圖片進(jìn)行處理,使之能夠適當(dāng)?shù)娘@示在畫面中。找到一些資料后,處理也比較簡(jiǎn)單代碼: /* * AndyChen(andy.chen.sh@Gmail.com) * **/ public static Icon getFixedBoundIcon(String filePath, int height, int width) throws Exception{ double Ratio=0.0; //縮放比例 File F = new File(filePath); if (!F.isFile()) throw new Exception(F+" is not image file error in getFixedBoundIcon!"); Icon ret = new ImageIcon(filePath); BufferedImage Bi = ImageIO.read(F); if ((Bi.getHeight()>height) (Bi.getWidth()>width)){ if (Bi.getHeight()>Bi.getWidth()){ Ratio = (new Integer(height)).doubleValue() /Bi.getHeight(); } else { Ratio = (new Integer(width)).doubleValue()/Bi.getWidth(); } File ThF = new File(filePath+"_"+height +"_"+width); Image Itemp = Bi.getScaledInstance (width,height,Bi.SCALE_SMOOTH); AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(Ratio, Ratio), null); Itemp = op.filter(Bi, null); try { ImageIO.write((BufferedImage)Itemp, "jpg", ThF); ret = new ImageIcon(ThF.getPath()); }catch (Exception ex) { } } return ret; }

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 麻栗坡县| 聂拉木县| 环江| 吉隆县| 玉门市| 古交市| 囊谦县| 合阳县| 綦江县| 友谊县| 吴堡县| 黑水县| 古浪县| 百色市| 旌德县| 大庆市| 承德市| 睢宁县| 涟水县| 阿荣旗| 泾阳县| 固始县| 普兰店市| 东丽区| 凤冈县| 关岭| 南陵县| 卢湾区| 许昌市| 洛川县| 留坝县| 广汉市| 津市市| 南丹县| 调兵山市| 龙山县| 云霄县| 巴林右旗| 阿克苏市| 娄底市| 茌平县|