• <menu id="w2i4a"></menu>
  • logo Aspose.PDF for .NET開發(fā)者使用教程

    文檔首頁>>Aspose.PDF for .NET開發(fā)者使用教程>>PDF管理控件Aspose.PDF for .Net使用教程(四十五):在PDF文件中添加圖章

    PDF管理控件Aspose.PDF for .Net使用教程(四十五):在PDF文件中添加圖章


    Aspose.PDF for .NET是一種高PDF處理和解析API,用于在跨平臺應(yīng)用程序中執(zhí)行文檔管理和操作任務(wù)。API可以輕松用于生成、修改、轉(zhuǎn)換、渲染、保護(hù)和打印PDF文檔,而無需使用Adobe Acrobat。此外,API還提供PDF壓縮選項(xiàng),表格創(chuàng)建和操作,圖形和圖像功能,廣泛的超鏈接功能,印章和水印任務(wù),擴(kuò)展的安全控制和自定義字體處理。

    在接下來的系列教程中,將為開發(fā)者帶來Aspose.PDF for .NET的一系列使用教程,例如進(jìn)行文檔間的轉(zhuǎn)換,如何標(biāo)記PDF文件,如何使用表單和圖表等等。本文將介紹如何在PDF文件中添加圖章。

    >>Aspose.PDF for .NET更新至最新版v20.8,歡迎下載體驗(yàn)。


    使用Aspose.PDF for .NET可以使用ImageStamp類將圖像圖章添加到PDF文件。ImageStamp類提供創(chuàng)建基于圖像的圖章所需的屬性,例如高度,寬度,不透明度等。

    要添加圖像圖章:

    • 使用必需的屬性創(chuàng)建一個Document對象和一個ImageStamp對象。
    • 調(diào)用Page類的AddStamp方法將圖章添加到PDF。

    以下代碼段顯示了如何在PDF文件中添加圖章。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "AddImageStamp.pdf");
    
    // Create image stamp
    ImageStamp imageStamp = new ImageStamp(dataDir + "aspose-logo.jpg");
    imageStamp.Background = true;
    imageStamp.XIndent = 100;
    imageStamp.YIndent = 100;
    imageStamp.Height = 300;
    imageStamp.Width = 300;
    imageStamp.Rotate = Rotation.on270;
    imageStamp.Opacity = 0.5;
    // Add stamp to particular page
    pdfDocument.Pages[1].AddStamp(imageStamp);
    
    dataDir = dataDir + "AddImageStamp_out.pdf";
    // Save output document
    pdfDocument.Save(dataDir);

    添加圖章時控制圖像質(zhì)量

    將圖像添加為圖章對象時,可以控制圖像的質(zhì)量。ImageStamp類的Quality屬性用于此目的。它以百分比表示圖像質(zhì)量(有效值為0..100)。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "AddImageStamp.pdf");
    
    // Create image stamp
    ImageStamp imageStamp = new ImageStamp(dataDir + "aspose-logo.jpg");
    
    imageStamp.Quality = 10;
    pdfDocument.Pages[1].AddStamp(imageStamp);
    pdfDocument.Save(dataDir + "ControlImageQuality_out.pdf");

    在PDF文件中添加PDF頁面圖章

    可以使用PdfPageStamp類將PDF頁面作為圖章添加到PDF文件中。PdfPageStamp類提供創(chuàng)建基于PDF頁面的圖章所需的屬性。可以將任何PDF文件的特定頁面?zhèn)鬟f給PdfPageStamp類的構(gòu)造函數(shù)。為了添加基于頁面的圖章,需要使用必需的屬性創(chuàng)建Document對象和PdfPageStamp對象。之后,可以調(diào)用Page的AddStamp方法在PDF中添加圖章。以下代碼段顯示了如何在PDF文件中添加PDF頁面圖章。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "PDFPageStamp.pdf");
    
    // Create page stamp
    PdfPageStamp pageStamp = new PdfPageStamp(pdfDocument.Pages[1]);
    pageStamp.Background = true;
    pageStamp.XIndent = 100;
    pageStamp.YIndent = 100;
    pageStamp.Rotate = Rotation.on180;
    
    // Add stamp to particular page
    pdfDocument.Pages[1].AddStamp(pageStamp);
    
    dataDir = dataDir + "PDFPageStamp_out.pdf";
    // Save output document
    pdfDocument.Save(dataDir);

    在PDF文件中添加頁碼戳

    可以使用PageNumber Stamp類在PDF文件中添加頁碼戳。PageNumber Stamp類提供了創(chuàng)建基于頁碼的圖章所需的屬性,如格式,邊距,對齊方式,起始編號等。為了添加頁碼圖章,您需要使用必需的屬性來創(chuàng)建Document對象和PageNumber Stamp對象。之后,可以調(diào)用Page的AddStamp方法在PDF中添加圖章。還可以設(shè)置頁碼標(biāo)記的字體屬性。以下代碼段顯示了如何在PDF文件中添加頁碼。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "PageNumberStamp.pdf");
    
    // Create page number stamp
    PageNumberStamp pageNumberStamp = new PageNumberStamp();
    // Whether the stamp is background
    pageNumberStamp.Background = false;
    pageNumberStamp.Format = "Page # of " + pdfDocument.Pages.Count;
    pageNumberStamp.BottomMargin = 10;
    pageNumberStamp.HorizontalAlignment = HorizontalAlignment.Center;
    pageNumberStamp.StartingNumber = 1;
    // Set text properties
    pageNumberStamp.TextState.Font = FontRepository.FindFont("Arial");
    pageNumberStamp.TextState.FontSize = 14.0F;
    pageNumberStamp.TextState.FontStyle = FontStyles.Bold;
    pageNumberStamp.TextState.FontStyle = FontStyles.Italic;
    pageNumberStamp.TextState.ForegroundColor = Color.Aqua;
    
    // Add stamp to particular page
    pdfDocument.Pages[1].AddStamp(pageNumberStamp);
    
    dataDir = dataDir + "PageNumberStamp_out.pdf";
    // Save output document
    pdfDocument.Save(dataDir);

    在PDF中添加日期時間戳

    可以使用TextStamp類在PDF文件中添加文本戳。TextStamp類提供創(chuàng)建基于文本的圖章所需的屬性,例如字體大小,字體樣式和字體顏色等。為了添加文本圖章,需要使用必需的屬性來創(chuàng)建Document對象和TextStamp對象。之后,可以調(diào)用Page的AddStamp方法在PDF中添加圖章。以下代碼段顯示了如何在PDF文件中添加文本戳。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "AddTextStamp.pdf");
    string annotationText = string.Empty;
    
    annotationText = DateTime.Now.ToString("MM/dd/yy hh:mm:ss tt ");
    // Create text stamp
    TextStamp textStamp = new TextStamp(annotationText);
    // Set properties of the stamp
    textStamp.BottomMargin = 10;
    textStamp.RightMargin = 20;
    textStamp.HorizontalAlignment = Aspose.Pdf.HorizontalAlignment.Right;
    textStamp.VerticalAlignment = VerticalAlignment.Bottom;
    // Adding stamp on stamp collection
    pdfDocument.Pages[1].AddStamp(textStamp);
    
    DefaultAppearance default_appearance = new DefaultAppearance("Arial", 6, System.Drawing.Color.Black);
    
    FreeTextAnnotation textAnnotation = new FreeTextAnnotation(pdfDocument.Pages[1], new Aspose.Pdf.Rectangle(0, 0, 0, 0), default_appearance);
    textAnnotation.Name = "Stamp";
    textAnnotation.Accept(new AnnotationSelector(textAnnotation));
    
    textAnnotation.Contents = textStamp.Value;
    // TextAnnotation.Open = true;
    // TextAnnotation.Icon = Aspose.Pdf.InteractiveFeatures.Annotations.TextIcon.Key;
    Border border = new Border(textAnnotation);
    border.Width = 0;
    border.Dash = new Dash(1, 1);
    textAnnotation.Border = border;
    textAnnotation.Rect = new Aspose.Pdf.Rectangle(0, 0, 0, 0);
    pdfDocument.Pages[1].Annotations.Add(textAnnotation);
    
    dataDir = dataDir + "AddDateTimeStamp_out.pdf";
    // Save output document
    pdfDocument.Save(dataDir);

    在PDF文件中添加文本圖章

    可以使用TextStamp類在PDF文件中添加文本戳。TextStamp類提供創(chuàng)建基于文本的圖章所需的屬性,例如字體大小,字體樣式和字體顏色等。為了添加文本圖章,需要使用必需的屬性來創(chuàng)建Document對象和TextStamp對象。之后,可以調(diào)用Page的AddStamp方法在PDF中添加圖章。以下代碼段顯示了如何在PDF文件中添加文本戳。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_StampsWatermarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir+ "AddTextStamp.pdf");
    
    // Create text stamp
    TextStamp textStamp = new TextStamp("Sample Stamp");
    // Set whether stamp is background
    textStamp.Background = true;
    // Set origin
    textStamp.XIndent = 100;
    textStamp.YIndent = 100;
    // Rotate stamp
    textStamp.Rotate = Rotation.on90;
    // Set text properties
    textStamp.TextState.Font = FontRepository.FindFont("Arial");
    textStamp.TextState.FontSize = 14.0F;
    textStamp.TextState.FontStyle = FontStyles.Bold;
    textStamp.TextState.FontStyle = FontStyles.Italic;
    textStamp.TextState.ForegroundColor = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Aqua);
    // Add stamp to particular page
    pdfDocument.Pages[1].AddStamp(textStamp);
    
    dataDir = dataDir + "AddTextStamp_out.pdf";
    // Save output document
    pdfDocument.Save(dataDir);

    還想要更多嗎?您可以點(diǎn)擊閱讀【2020 · Aspose最新資源整合】,查找需要的教程資源。如果您有任何疑問或需求,請隨時加入Aspose技術(shù)交流群(642018183),我們很高興為您提供查詢和咨詢。
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();