91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java怎么在表格添加水印

發布時間:2022-05-12 11:10:35 來源:億速云 閱讀:293 作者:iii 欄目:編程語言

這篇文章主要介紹“java怎么在表格添加水印”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“java怎么在表格添加水印”文章能幫助大家解決問題。

添加過程

1、加載Excel測試文檔;

2、設置文本和字體大小;

3、調用DrawText()方法插入圖片,將圖片設置為頁眉;

4、將圖片設置為頁眉,定義圖片寬度和高度、文本顯示樣式及位置。

實例

import com.spire.xls.*;
 
import <span><a href="http://www.lanqibing.com/tag/java/" title="View all posts in java" target="_blank">java</a></span>.awt.*;
import <span><a href="http://www.lanqibing.com/tag/java/" title="View all posts in java" target="_blank">java</a></span>.awt.image.BufferedImage;
 
import static <span><a href="http://www.lanqibing.com/tag/java/" title="View all posts in java" target="_blank">java</a></span>.awt.image.BufferedImage.TYPE_INT_ARGB;
 
public class SingleWatermark {
    public static void main(String[] args) {
        //加載Excel測試文檔
        Workbook wb = new Workbook();
        wb.loadFromFile("test.xlsx");
 
        //設置文本和字體大小
        Font font = new Font("仿宋", Font.PLAIN, 40);
 
        for (int i =0;i<wb.getWorksheets().getCount();i++)
        {
            Worksheet sheet = wb.getWorksheets().get(i);
            //調用DrawText() 方法插入圖片
            BufferedImage imgWtrmrk = drawText("內部專用", font, Color.pink, Color.white, sheet.getPageSetup().getPageHeight(), sheet.getPageSetup().getPageWidth());
 
            //將圖片設置為頁眉
            sheet.getPageSetup().setCenterHeaderImage(imgWtrmrk);
            sheet.getPageSetup().setCenterHeader("&G");
 
 
            //將顯示模式設置為Layout
            sheet.setViewMode(ViewMode.Layout);
        }
 
        //保存文檔
        wb.saveToFile("SingleWatermark.xlsx", ExcelVersion.Version2013);
    }
    private static BufferedImage drawText (String text, Font font, Color textColor, Color backColor,double height, double width)
    {
        //定義圖片寬度和高度
        BufferedImage img = new BufferedImage((int) width, (int) height, TYPE_INT_ARGB);
 
        Graphics2D loGraphic = img.createGraphics();
 
        //獲取文本size
        FontMetrics loFontMetrics = loGraphic.getFontMetrics(font);
        int liStrWidth = loFontMetrics.stringWidth(text);
        int liStrHeight = loFontMetrics.getHeight();
 
        //文本顯示樣式及位置
        loGraphic.setColor(backColor);
        loGraphic.fillRect(0, 0, (int) width, (int) height);
        loGraphic.translate(((int) width - liStrWidth) / 2, ((int) height - liStrHeight) / 2);
        loGraphic.rotate(Math.toRadians(-45));
 
        loGraphic.translate(-((int) width - liStrWidth) / 2, -((int) height - liStrHeight) / 2);
        loGraphic.setFont(font);
        loGraphic.setColor(textColor);
        loGraphic.drawString(text, ((int) width - liStrWidth) / 2, ((int) height - liStrHeight) / 2);
        loGraphic.dispose();
        return img;
    }
}

關于“java怎么在表格添加水印”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定陶县| 建平县| 台北市| 东乡县| 会昌县| 贞丰县| 阜新市| 太康县| 常山县| 冷水江市| 台安县| 麟游县| 仁化县| 板桥市| 皮山县| 平顶山市| 南木林县| 清水河县| 舞阳县| 咸丰县| 宜章县| 驻马店市| 南投市| 保靖县| 凯里市| 右玉县| 蒲城县| 鄂托克旗| 图木舒克市| 丹凤县| 山阳县| 全州县| 永嘉县| 宽甸| 民县| 石景山区| 区。| 安达市| 普宁市| 镇赉县| 晋宁县|