真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java怎么實(shí)現(xiàn)圖片上插入文字并保存

這篇文章主要介紹了java怎么實(shí)現(xiàn)圖片上插入文字并保存,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

成都創(chuàng)新互聯(lián)公司是一家以成都網(wǎng)站建設(shè)公司、網(wǎng)頁(yè)設(shè)計(jì)、品牌設(shè)計(jì)、軟件運(yùn)維、成都網(wǎng)站推廣、小程序App開(kāi)發(fā)等移動(dòng)開(kāi)發(fā)為一體互聯(lián)網(wǎng)公司。已累計(jì)為成都玻璃貼膜等眾行業(yè)中小客戶提供優(yōu)質(zhì)的互聯(lián)網(wǎng)建站和軟件開(kāi)發(fā)服務(wù)。

這兩天通過(guò)在網(wǎng)上查閱資料,了解了在圖片上插入文字并保存的功能,下面記錄一下。

工具類:PrintImage。

package com.learning.www.utils;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.font.GlyphVector;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URL;
 
import javax.imageio.ImageIO;
 
public class PrintImage {
 
  private Font    font   = new Font("黑體", Font.PLAIN, 25); // 添加字體的屬性設(shè)置
 
  private Graphics2D g    = null;
 
  private int    fontsize = 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(Font font) {
    
    this.font = font;
  }
 
  /**
   * 修改圖片,返回修改后的圖片緩沖區(qū)(只輸出一行文本)
   */
  public BufferedImage modifyImage(BufferedImage img, Object content, int x, int y,Color color) {
    try {
      int w = img.getWidth();
      int h = img.getHeight();
      g = img.createGraphics();
      g.setBackground(Color.BLUE);
      
      
      //g.setColor(new Color(120, 120, 110));//設(shè)置字體顏色
      g.setColor(color);//設(shè)置字體顏色
      g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB);
      g.setStroke(new BasicStroke(3));
      if (this.font != null)
        g.setFont(this.font);
      if (content != null) {
        g.translate(w / 2, h / 2);
        //g.rotate(8 * Math.PI / 180);
        g.drawString(content.toString(), x, y);
      }
      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("www.hi.baidu.com?xia_mingjian", 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;
  }
  /***
   * 插入描邊的字體
   * @param img
   * @param content
   * @param w
   * @param h
   * @return
   */
  public BufferedImage modifyShapImg(BufferedImage img, String content, int w, int h) {
//    int w = img.getWidth();
//    int h = img.getHeight();
    g = img.createGraphics();
   
    //Font f = new Font("Courier New", Font.BOLD, 140);
    GlyphVector v = font.createGlyphVector(g.getFontMetrics(font).getFontRenderContext(), content);
    Shape shape = v.getOutline();
    if (content != null) {
      g.translate(w, h);
      //g.rotate(8 * Math.PI / 180);
      //g.drawString(content.toString(), x, y);
    }
    g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB);
    g.setColor(new Color(0,90,160));
    g.fill(shape);
    g.setColor(new Color(248,248,255));
    g.setStroke(new BasicStroke(2));
    g.draw(shape);
    
   return img;
  }
 
}

插入多條的格式相同的文字:

package com.learning.www.utils;
 
import java.awt.Color;
import java.awt.Font;
import java.awt.image.BufferedImage;
 
public class PrintJobToImg {
 
 public static void printJobToImg(PrintImage tt,BufferedImage d,String job1,String need1,String amount1,String salary1,int y) {
 
  
    if(null != job1 && !job1.equals("")) {
   need1 = "崗位職責(zé):"+need1;
   int strleth = need1.length()+5;
   int num = strleth/40;
   int subindex = 0;
   int j = 40;
   //y = -350;
   String[] s1 = new String[num+1];
   tt.setFont(new Font("黑體",Font.BOLD, 28));
   tt.modifyImage(d, "職位:"+job1, -50, y, new Color(0,191,255));
   tt.modifyImage(d, "人數(shù):"+amount1, -30+(30*(3+job1.length())), y, new Color(210,105,30));
   tt.modifyImage(d, "月薪:"+salary1, -10+(30*(6+job1.length()+amount1.length())), y, new Color(178,34,34));
   y = y+25;
   tt.setFont(new Font("黑體",Font.PLAIN, 24));
    if(num < 1 ) {
     System.out.println(num);
     tt.modifyImage(d, need1, -50, y+25,new Color(0,0,0));
    }else {
     for(int i = 0;i

啟動(dòng)類:

package com.learning.www;
 
import java.awt.Color;
import java.awt.Font;
import java.awt.GraphicsEnvironment;
import java.awt.image.BufferedImage;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
 
import com.learning.www.utils.PrintImage;
import com.learning.www.utils.PrintJobToImg;
 
@SpringBootApplication
@EnableAutoConfiguration
@EnableCaching
@MapperScan("com.learning.www.mapper")
public class LearningApplication {
 
 public static void main(String[] args) {
 SpringApplication.run(LearningApplication.class, args);
    PrintImage tt = new PrintImage();
    BufferedImage d = tt.loadImageLocal("D:\\test\\muban.jpg");
    String title = "撒大大是多少有限公司";
    int x = title.length() * 96;
    // 公司標(biāo)題 72號(hào)字體==96px
    tt.setFont(new Font("造字工房力黑(非商用)常規(guī)體", Font.BOLD, 76));
    //tt.modifyImage(d, title, (1920-x)/2-960, -420, new Color(65,105,225));
    //tt.modifyShapImg(d, title, (1920-x)/2-960, -420);
    tt.modifyShapImg(d, title, (1920-x)/2, 130);
    
    //公司簡(jiǎn)介,限定字?jǐn)?shù)
    tt.setFont(new Font("黑體",Font.PLAIN, 30));
    String str = "功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"
    +"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"
    +"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"
    +"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存"+"功能:可以實(shí)現(xiàn)在圖片模板上寫(xiě)內(nèi)容并保存";
    System.out.println(str.length());
    //計(jì)算字符串長(zhǎng)度
    int strleth=str.length();
    //計(jì)算循環(huán)次數(shù)
    int num = strleth/20;
    //字符串截取第一位
    int subindex = 0;
    //字符串截取第二位
    int j = 20;
    //距離y軸的位置
    int y = -350;
    String[] s = new String[num+1];
    if(num < 1 ) {
    System.out.println(num);
    tt.modifyImage(d, str, -830, y,new Color(0,0,0));
    }else {
    for(int i = 0;i

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“java怎么實(shí)現(xiàn)圖片上插入文字并保存”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


新聞名稱:java怎么實(shí)現(xiàn)圖片上插入文字并保存
文章轉(zhuǎn)載:http://weahome.cn/article/pjsjcp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部