簡體   English   中英

從帶有圖像和水印的 pdf 創建 pdf

[英]Create a pdf from pdf with images and watermark

從pdf,我想制作一個新的pdf,我將添加水印,然后使每個頁面成為圖像頁面。

itext 可以實現嗎?

我不知道如何將其轉換為圖像,但是對於水印,正如 Usama Kiyani 在評論中所說,您應該考慮使用可以通過 nugget 包管理器安裝的 itextsharp。 我已經用它為現有的 pdf 文件添加了水印。

這是我使用的代碼,它在現有 pdf 文件(sourceFile)的每個頁面的中心添加一個對角紅色水印(該文本是參數 watermarkText),然后將此修改后的版本保存在給定位置(outputFile):

public static void AddWatermarkTextC(string sourceFile, string outputFile, string watermarkText)
    {
        BaseFont tWatermarkFont = null;
        float tWatermarkFontSize = 48F;
        iTextSharp.text.BaseColor tWatermarkFontColor = null;
        float tWatermarkFontOpacity = 0.3F;
        float tWatermarkRotation = 45.0F;

        tWatermarkFont = iTextSharp.text.pdf.BaseFont.CreateFont(iTextSharp.text.pdf.BaseFont.HELVETICA, iTextSharp.text.pdf.BaseFont.CP1252, iTextSharp.text.pdf.BaseFont.NOT_EMBEDDED);
        tWatermarkFontColor = iTextSharp.text.BaseColor.RED;
        AddWatermarkTextC(sourceFile, outputFile, watermarkText, tWatermarkFont, tWatermarkFontSize, tWatermarkFontColor, tWatermarkFontOpacity, tWatermarkRotation);
    }

public static void AddWatermarkTextC(string sourceFile, string outputFile, string watermarkText, iTextSharp.text.pdf.BaseFont watermarkFont, float watermarkFontSize, iTextSharp.text.BaseColor watermarkFontColor, float watermarkFontOpacity, float watermarkRotation)
    {

        iTextSharp.text.pdf.PdfReader reader = null;
        iTextSharp.text.pdf.PdfStamper stamper = null;
        iTextSharp.text.pdf.PdfGState gstate = null;
        iTextSharp.text.pdf.PdfContentByte underContent = null;
        iTextSharp.text.Rectangle rect = null;
        float currentY = 0.0F;
        float offset = 0.0F;
        int pageCount = 0;

        try
        {
            reader = new iTextSharp.text.pdf.PdfReader(sourceFile);
            rect = reader.GetPageSizeWithRotation(1);
            FileStream stream = new System.IO.FileStream(outputFile, System.IO.FileMode.Create);
            stamper = new iTextSharp.text.pdf.PdfStamper(reader, stream);

            if (watermarkFont == null)
            {
                watermarkFont = iTextSharp.text.pdf.BaseFont.CreateFont(iTextSharp.text.pdf.BaseFont.HELVETICA, iTextSharp.text.pdf.BaseFont.CP1252, iTextSharp.text.pdf.BaseFont.NOT_EMBEDDED);
            }

            if (watermarkFontColor == null)
            {
                watermarkFontColor = iTextSharp.text.BaseColor.RED;
            }

            gstate = new iTextSharp.text.pdf.PdfGState();
            gstate.FillOpacity = watermarkFontOpacity;
            gstate.StrokeOpacity = watermarkFontOpacity;
            pageCount = reader.NumberOfPages;

            for (int i = 1; i <= pageCount; i++)
            {
                underContent = stamper.GetOverContent(i);
                underContent.SaveState();
                underContent.SetGState(gstate);
                underContent.SetColorFill(watermarkFontColor);
                underContent.BeginText();
                underContent.SetFontAndSize(watermarkFont, watermarkFontSize);
                underContent.SetTextMatrix(30, 30);

                currentY = (rect.Height / 2);

                underContent.ShowTextAligned(iTextSharp.text.Element.ALIGN_CENTER, watermarkText, rect.Width / 2, currentY - offset, watermarkRotation);

                underContent.EndText();
                underContent.RestoreState();
            }

            stamper.Close();
            reader.Close();
            stream.Close();
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }  

我想改變它以滿足您的需要並不難,但是如果有什么需要我解釋的,請提出要求。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM