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

首頁(yè) > 編程 > Java > 正文

java 在圖片上寫(xiě)字,兩個(gè)圖片合并的實(shí)現(xiàn)方法

2019-11-26 13:34:12
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

實(shí)例如下:

package writeimg; import javax.imageio.ImageIO; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.net.URL;     public class pic {     private Font font = new Font("華文彩云", Font.PLAIN, 40);// 添加字體的屬性設(shè)置     private Graphics2D g = null;     private int fontsize = 0;     private int x = 0;     private int y = 0;     /**   * 導(dǎo)入本地圖片到緩沖區(qū)   */   public BufferedImage loadImageLocal(String imgName) {     try {       return ImageIO.read(new File(imgName));     } catch (IOException e) {       System.out.println(e.getMessage());     }     return null;   }     /**   * 導(dǎo)入網(wǎng)絡(luò)圖片到緩沖區(qū)   */   public BufferedImage loadImageUrl(String imgName) {     try {       URL url = new URL(imgName);       return ImageIO.read(url);     } catch (IOException e) {       System.out.println(e.getMessage());     }     return null;   }     /**   * 生成新圖片到本地   */   public void writeImageLocal(String newImage, BufferedImage img) {     if (newImage != null && img != null) {       try {         File outputfile = new File(newImage);         ImageIO.write(img, "jpg", outputfile);       } catch (IOException e) {         System.out.println(e.getMessage());       }     }   }     /**   * 設(shè)定文字的字體等   */   public void setFont(String fontStyle, int fontSize) {     this.fontsize = fontSize;     this.font = new Font(fontStyle, Font.PLAIN, fontSize);   }     /**   * 修改圖片,返回修改后的圖片緩沖區(qū)(只輸出一行文本)   */   public BufferedImage modifyImage(BufferedImage img, Object content, int x,       int y) {       try {       int w = img.getWidth();       int h = img.getHeight();       g = img.createGraphics();       g.setBackground(Color.WHITE);       g.setColor(Color.orange);//設(shè)置字體顏色       if (this.font != null)         g.setFont(this.font);       // 驗(yàn)證輸出位置的縱坐標(biāo)和橫坐標(biāo)       if (x >= h || y >= w) {         this.x = h - this.fontsize + 2;         this.y = w;       } else {         this.x = x;         this.y = y;       }       if (content != null) {         g.drawString(content.toString(), this.x, this.y);       }       g.dispose();     } catch (Exception e) {       System.out.println(e.getMessage());     }       return img;   }     /**   * 修改圖片,返回修改后的圖片緩沖區(qū)(輸出多個(gè)文本段) xory:true表示將內(nèi)容在一行中輸出;false表示將內(nèi)容多行輸出   */   public BufferedImage modifyImage(BufferedImage img, Object[] contentArr,       int x, int y, boolean xory) {     try {       int w = img.getWidth();       int h = img.getHeight();       g = img.createGraphics();       g.setBackground(Color.WHITE);       g.setColor(Color.RED);       if (this.font != null)         g.setFont(this.font);       // 驗(yàn)證輸出位置的縱坐標(biāo)和橫坐標(biāo)       if (x >= h || y >= w) {         this.x = h - this.fontsize + 2;         this.y = w;       } else {         this.x = x;         this.y = y;       }       if (contentArr != null) {         int arrlen = contentArr.length;         if (xory) {           for (int i = 0; i < arrlen; i++) {             g.drawString(contentArr[i].toString(), this.x, this.y);             this.x += contentArr[i].toString().length()                 * this.fontsize / 2 + 5;// 重新計(jì)算文本輸出位置           }         } else {           for (int i = 0; i < arrlen; i++) {             g.drawString(contentArr[i].toString(), this.x, this.y);             this.y += this.fontsize + 2;// 重新計(jì)算文本輸出位置           }         }       }       g.dispose();     } catch (Exception e) {       System.out.println(e.getMessage());     }       return img;   }     /**   * 修改圖片,返回修改后的圖片緩沖區(qū)(只輸出一行文本)   *    * 時(shí)間:2007-10-8   *    * @param img   * @return   */   public BufferedImage modifyImageYe(BufferedImage img) {       try {       int w = img.getWidth();       int h = img.getHeight();       g = img.createGraphics();       g.setBackground(Color.WHITE);       g.setColor(Color.blue);//設(shè)置字體顏色       if (this.font != null)         g.setFont(this.font);       g.drawString("reyo.cn", w - 85, h - 5);       g.dispose();     } catch (Exception e) {       System.out.println(e.getMessage());     }       return img;   }     public BufferedImage modifyImagetogeter(BufferedImage b, BufferedImage d) {       try {       int w = b.getWidth();       int h = b.getHeight();                 g = d.createGraphics();       g.drawImage(b, 100, 10, w, h, null);       g.dispose();     } catch (Exception e) {       System.out.println(e.getMessage());     }       return d;   }     public static void main(String[] args) {       pic tt = new pic();       BufferedImage d = tt.loadImageLocal("D://11.jpg"); //   BufferedImage b = tt //       .loadImageLocal("E://文件(word,excel,pdf,ppt.txt)//zte-logo.png");      tt.writeImageLocal("D://cc.jpg",tt.modifyImage(d,"西昌蘋(píng)果",90,90)     //往圖片上寫(xiě)文件      );       //tt.writeImageLocal("D://cc.jpg", tt.modifyImagetogeter(b, d));     //將多張圖片合在一起     System.out.println("success");   }   }

以上就是小編為大家?guī)?lái)的java 在圖片上寫(xiě)字,兩個(gè)圖片合并的實(shí)現(xiàn)方法全部?jī)?nèi)容了,希望大家多多支持武林網(wǎng)~

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 乌海市| 保靖县| 夹江县| 白银市| 廉江市| 平南县| 武安市| 道真| 微山县| 田阳县| 桓仁| 马龙县| 龙南县| 临西县| 来宾市| 宁城县| 永丰县| 林州市| 海淀区| 无锡市| 锦屏县| 永宁县| 克拉玛依市| 北宁市| 姚安县| 永寿县| 通江县| 达拉特旗| 浦城县| 石景山区| 棋牌| 奎屯市| 宜春市| 湘西| 柳河县| 诸暨市| 平南县| 兴化市| 诸暨市| 孙吴县| 孙吴县|