亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

 更新時間:2016年11月12日 19:54:29   投稿:jingxian  
下面小編就為大家?guī)硪黄猨ava 在圖片上寫字,兩個圖片合并的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

實例如下:

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);// 添加字體的屬性設置 
  
  private Graphics2D g = null; 
  
  private int fontsize = 0; 
  
  private int x = 0; 
  
  private int y = 0; 
  
  /**
   * 導入本地圖片到緩沖區(qū)
   */ 
  public BufferedImage loadImageLocal(String imgName) { 
    try { 
      return ImageIO.read(new File(imgName)); 
    } catch (IOException e) { 
      System.out.println(e.getMessage()); 
    } 
    return null; 
  } 
  
  /**
   * 導入網(wǎng)絡圖片到緩沖區(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()); 
      } 
    } 
  } 
  
  /**
   * 設定文字的字體等
   */ 
  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);//設置字體顏色 
      if (this.font != null) 
        g.setFont(this.font); 
      // 驗證輸出位置的縱坐標和橫坐標 
      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ū)(輸出多個文本段) 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); 
      // 驗證輸出位置的縱坐標和橫坐標 
      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;// 重新計算文本輸出位置 
          } 
        } else { 
          for (int i = 0; i < arrlen; i++) { 
            g.drawString(contentArr[i].toString(), this.x, this.y); 
            this.y += this.fontsize + 2;// 重新計算文本輸出位置 
          } 
        } 
      } 
      g.dispose(); 
    } catch (Exception e) { 
      System.out.println(e.getMessage()); 
    } 
  
    return img; 
  } 
  
  /**
   * 修改圖片,返回修改后的圖片緩沖區(qū)(只輸出一行文本)
   * 
   * 時間: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);//設置字體顏色 
      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,"西昌蘋果",90,90) 
    //往圖片上寫文件 
     ); 
  
    //tt.writeImageLocal("D:\\cc.jpg", tt.modifyImagetogeter(b, d)); 
    //將多張圖片合在一起 
    System.out.println("success"); 
  } 
  
}

以上就是小編為大家?guī)淼膉ava 在圖片上寫字,兩個圖片合并的實現(xiàn)方法全部內(nèi)容了,希望大家多多支持腳本之家~

相關文章

  • Java創(chuàng)建多線程局域網(wǎng)聊天室實例

    Java創(chuàng)建多線程局域網(wǎng)聊天室實例

    這篇文章主要介紹了Java創(chuàng)建多線程局域網(wǎng)聊天室實例,本篇文章通過簡要的案例,講解了該項技術(shù)的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下
    2021-07-07
  • Java模擬實現(xiàn)ATM機

    Java模擬實現(xiàn)ATM機

    這篇文章主要為大家詳細介紹了Java模擬實現(xiàn)ATM機,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-03-03
  • mybatis-plus getOne和邏輯刪除問題詳解

    mybatis-plus getOne和邏輯刪除問題詳解

    這篇文章主要介紹了mybatis-plus getOne和邏輯刪除,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-08-08
  • springboot連接neo4j報錯的解決方案

    springboot連接neo4j報錯的解決方案

    這篇文章主要介紹了springboot連接neo4j報錯的解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-02-02
  • IntelliJ?IDEA的代碼擱置功能實現(xiàn)

    IntelliJ?IDEA的代碼擱置功能實現(xiàn)

    本文主要介紹了IntelliJ?IDEA的代碼擱置功能實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2023-01-01
  • Java中詳細解析Map接口

    Java中詳細解析Map接口

    這篇文章主要介紹了Java8 中 Map 接口的新方法,本文通過代碼實例給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2021-08-08
  • PostMan傳@RequestParam修飾的數(shù)組方式

    PostMan傳@RequestParam修飾的數(shù)組方式

    這篇文章主要介紹了PostMan傳@RequestParam修飾的數(shù)組方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-08-08
  • Java Chassis3注冊中心分區(qū)隔離技術(shù)解密

    Java Chassis3注冊中心分區(qū)隔離技術(shù)解密

    這篇文章主要為大家介紹了Java Chassis3注冊中心分區(qū)隔離技術(shù)解密,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2024-01-01
  • MyBatis解決模糊查詢包含特殊字符問題

    MyBatis解決模糊查詢包含特殊字符問題

    這篇文章主要介紹了MyBatis解決模糊查詢包含特殊字符問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-02-02
  • 詳解SpringBoot之集成Spring AOP

    詳解SpringBoot之集成Spring AOP

    本篇文章主要介紹了詳解SpringBoot之集成Spring AOP,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-07-07

最新評論