itext加全屏水印

word轉(zhuǎn)pdf的時(shí)候,需要引入jacob包!
jacob包已上傳到碼云

https://gitee.com/kong_qing_rong/daily-component-library/tree/master/jacob%E5%8C%85
public class test {  
    static final int wdFormatPDF = 17;// PDF 格式  
    private static int interval = -5; 
  
    /**  
     * word轉(zhuǎn)pdf  
     * @param fromAddress 待轉(zhuǎn)文件地址  
     * @param toAddress 新文件地址  
     */  
    public static void wordToPdf(String fromAddress,String toAddress){  
        ActiveXComponent ax = null;  
        try {  
            long startTime = System.currentTimeMillis();  
            /*  
             * 創(chuàng)建不同的控件調(diào)用不同的值  
             * Word——Word.Application  
             * Excel——Excel.Application  
             * Powerpoint——Powerpoint.Application  
             * Outlook——Outlook.Application  
             * */  
            ax = new ActiveXComponent("Word.Application");  
            /*設(shè)置打開(kāi)word文檔不可見(jiàn)*/  
            ax.setProperty("Visible", false);  
            //獲取Word文檔中所有內(nèi)容  
            Dispatch docs = ax.getProperty("Documents").toDispatch();  
            //打開(kāi)word文檔则吟,并設(shè)置word為不可編輯和不需確認(rèn)  
            Dispatch doc = Dispatch.call(docs,  
                    "Open",   
                    fromAddress,// FileName  
                    false,// ConfirmConversions  
                    true // ReadOnly  
                    ).toDispatch();  
              
            File tofile = new File(toAddress);  
            if (tofile.exists()) {  
                tofile.delete();  
            }  
            //word文件另存為pdf文件  
            Dispatch.call(doc,//  
                    "SaveAs", //  
                    toAddress, // FileName  
                    wdFormatPDF);  
            //關(guān)閉word文檔  
            Dispatch.call(doc, "Close", false);  
            long endTime = System.currentTimeMillis();  
            System.out.println("轉(zhuǎn)化完成,總共耗時(shí)" + (endTime - startTime) + "ms。");  
        } catch (Exception e) {  
            System.out.println("========Error:文檔轉(zhuǎn)換失敗:" + e.getMessage());  
        } finally {  
            if (ax != null)  
                ax.invoke("Quit", new Variant[]{});  
        }  
    }  
  
    public static void waterMark(String inputFile,  
            String outputFile, String waterMarkName, String password) {  
        try {  
            PdfReader reader = new PdfReader(inputFile);  
            PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(  
                    outputFile));  
            
            byte[] ownerPassword = password.getBytes();
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_ASSEMBLY, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_COPY, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_DEGRADED_PRINTING, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_FILL_IN, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_MODIFY_ANNOTATIONS, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_MODIFY_CONTENTS, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_PRINTING, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_SCREENREADERS, false);
          stamper.setEncryption(null, ownerPassword, PdfWriter.DO_NOT_ENCRYPT_METADATA, true);
          stamper.setViewerPreferences(PdfWriter.HideToolbar|PdfWriter.HideMenubar);
          
            BaseFont base = BaseFont.createFont("c://windows//fonts//simsun.ttc,1" , BaseFont.IDENTITY_H, BaseFont.EMBEDDED);// 使用系統(tǒng)字體  
            
            Rectangle pageRect = null;
            PdfGState gs = new PdfGState();
            gs.setFillOpacity(0.3f);
            gs.setStrokeOpacity(0.4f);
            int total = reader.getNumberOfPages() + 1; 
            
            JLabel label = new JLabel();
            FontMetrics metrics;
            int textH = 0; 
            int textW = 0; 
            label.setText(waterMarkName); 
            metrics = label.getFontMetrics(label.getFont()); 
            textH = metrics.getHeight();//字符串的高,   只和字體有關(guān) 
            textW = metrics.stringWidth(label.getText());//字符串的寬 
              
            PdfContentByte under;  
            for (int i = 1; i < total; i++) { 
                pageRect = reader.getPageSizeWithRotation(i);
                // 計(jì)算水印X,Y坐標(biāo)
                float x = pageRect.getWidth() / 2;
                float y = pageRect.getHeight() / 2;
                under = stamper.getOverContent(i); 
                under.saveState();
                under.setGState(gs);
                under.beginText();  
                under.setFontAndSize(base, 15);  
                // 水印文字成45度角傾斜
                for (int height = interval + textH; height < pageRect.getHeight();
                        height = height + textH*8) {  
                    for (int width = interval + textW; width < pageRect.getWidth() + textW; 
                            width = width + textW) {
                under.showTextAligned(Element.ALIGN_LEFT
                        , waterMarkName, width - textW,
                        height - textH, 45);
                    }
                }
                // 添加水印文字  
                under.endText();  
            }  
            stamper.close();  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
    }  
    public static void concatPDFs(List<InputStream> streamOfPDFFiles,
            OutputStream outputStream, boolean paginate) {
 
        Document document = new Document();
        try {
            List<InputStream> pdfs = streamOfPDFFiles;
            List<PdfReader> readers = new ArrayList<PdfReader>();
            int totalPages = 0;
            Iterator<InputStream> iteratorPDFs = pdfs.iterator();
 
            // Create Readers for the pdfs.
            while (iteratorPDFs.hasNext()) {
                InputStream pdf = iteratorPDFs.next();
                PdfReader pdfReader = new PdfReader(pdf);
                readers.add(pdfReader);
                totalPages += pdfReader.getNumberOfPages();
            }
            // Create a writer for the outputstream
            PdfWriter writer = PdfWriter.getInstance(document, outputStream);
 
            document.open();
            BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA,
                    BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
            PdfContentByte cb = writer.getDirectContent(); // Holds the PDF
            // data
 
            PdfImportedPage page;
            int currentPageNumber = 0;
            int pageOfCurrentReaderPDF = 0;
            Iterator<PdfReader> iteratorPDFReader = readers.iterator();
 
            // Loop through the PDF files and add to the output.
            while (iteratorPDFReader.hasNext()) {
                PdfReader pdfReader = iteratorPDFReader.next();
 
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                    document.newPage();
                    pageOfCurrentReaderPDF++;
                    currentPageNumber++;
                    page = writer.getImportedPage(pdfReader,
                            pageOfCurrentReaderPDF);
                    cb.addTemplate(page, 0, 0);
 
                    // Code for pagination.
                    if (paginate) {
                        cb.beginText();
                        cb.setFontAndSize(bf, 9);
                        cb.showTextAligned(PdfContentByte.ALIGN_CENTER, ""
                                + currentPageNumber + " of " + totalPages, 520,
                                5, 0);
                        cb.endText();
                    }
                }
                pageOfCurrentReaderPDF = 0;
            }
            outputStream.flush();
            document.close();
            outputStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (document.isOpen())
                document.close();
            try {
                if (outputStream != null)
                    outputStream.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
    }
  
    public static void main(String[] args) {
        try {
            String to = "C:/Desktop/to.pdf";
            String wordUrl = "C:/Desktop/1501139857165.doc";
            File file = File.createTempFile("tempFile", ".pdf");
            wordToPdf(wordUrl,file.getPath());
            waterMark(file.getPath(), to, "圣賢庸才痹籍,大人小心!;扌6撞!S贫狻O叨ā!","000000");
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }  
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末确买,一起剝皮案震驚了整個(gè)濱河市斤讥,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌湾趾,老刑警劉巖芭商,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異搀缠,居然都是意外死亡铛楣,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)艺普,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)簸州,“玉大人,你說(shuō)我怎么就攤上這事歧譬“痘耄” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵瑰步,是天一觀的道長(zhǎng)助琐。 經(jīng)常有香客問(wèn)我,道長(zhǎng)面氓,這世上最難降的妖魔是什么兵钮? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任蛆橡,我火速辦了婚禮,結(jié)果婚禮上掘譬,老公的妹妹穿的比我還像新娘泰演。我一直安慰自己,他們只是感情好葱轩,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布睦焕。 她就那樣靜靜地躺著,像睡著了一般靴拱。 火紅的嫁衣襯著肌膚如雪垃喊。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,950評(píng)論 1 291
  • 那天袜炕,我揣著相機(jī)與錄音本谜,去河邊找鬼。 笑死偎窘,一個(gè)胖子當(dāng)著我的面吹牛乌助,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播陌知,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼他托,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了仆葡?” 一聲冷哼從身側(cè)響起赏参,我...
    開(kāi)封第一講書(shū)人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沿盅,沒(méi)想到半個(gè)月后把篓,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡嗡呼,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年纸俭,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了皇耗。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片南窗。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖郎楼,靈堂內(nèi)的尸體忽然破棺而出万伤,到底是詐尸還是另有隱情,我是刑警寧澤呜袁,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布敌买,位于F島的核電站,受9級(jí)特大地震影響阶界,放射性物質(zhì)發(fā)生泄漏虹钮。R本人自食惡果不足惜聋庵,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望芙粱。 院中可真熱鬧祭玉,春花似錦、人聲如沸春畔。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)律姨。三九已至振峻,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間择份,已是汗流浹背扣孟。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留缓淹,地道東北人哈打。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像讯壶,于是被迫代替她去往敵國(guó)和親料仗。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容