如何在PDF上繪製文字和位圖

Chaknith related to 如何在PDF上繪製文字和位圖
查克尼思·賓
2023年7月30日
已更新 2025年2月9日
分享:
This article was translated from English: Does it need improvement?
Translated
View the article in English

在PDF上繪製文字和圖像包括將文字和圖像添加到現有文件中。 IronPDF 無縫地啟用了此功能。 透過結合文字和圖像,使用者可以自訂PDF文件,添加浮水印、標誌和註釋,以改善文件的視覺外觀和品牌形象。 此外,文字和圖像有助於信息展示、數據可視化以及互動表單的創建。

開始使用 IronPDF

立即在您的專案中使用IronPDF,並享受免費試用。

第一步:
green arrow pointer



在 PDF 上繪製文字範例

通過使用PdfDocument對象上可用的DrawText方法,您可以在不改變原始內容的情況下向現有PDF添加文本。

:path=/static-assets/pdf/content-code-examples/how-to/draw-text-and-bitmap-draw-text.cs
using IronPdf;
using IronSoftware.Drawing;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>testing</h1>");

// Draw text on PDF
pdf.DrawText("Some text", FontTypes.TimesNewRoman.Name, FontSize: 12, PageIndex: 0, X: 100, Y: 100, Color.Black, Rotation: 0);

pdf.SaveAs("drawText.pdf");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel

FontTypes 類別中可用的字體

DrawText 方法目前支援 IronPDF 中的所有標準字體,包括 Courier、Arial(或 Helvetica)、Times New Roman、Symbol 和 ZapfDingbats。 訪問管理字體文章中的「IronPDF 中的標準字體」部分,以獲取這些字體類型的斜體、粗體和傾斜變體。

ZapfDingbats 字體尤其可以用來顯示符號,如 ✖❄▲❪ ❫。 有關支援符號的完整列表,您可以造訪維基百科上的 Zapf Dingbats

PDF 上的輸出字體範例

PDF上的字體範例

繪製具有換行符的文本

繪製文本動作支持換行字符,使您可以使用內置換行符來呈現文本,以獲得更好的格式和視覺清晰度。

為達到此目的,將換行字符 (\n)添加到文本字串中。 使用上述範例,我們可以繪製Some text\nSecond line

使用自定義字體

我們還支持使用DrawText方法搭配自訂字型; 以下是一個範例,其中為文字添加了Pixelify Sans 字體

:path=/static-assets/pdf/content-code-examples/how-to/draw-text-and-bitmap-draw-custom-font.cs
using IronPdf;
using IronSoftware.Drawing;
using System.IO;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>testing</h1>");

// Add custom font to the PDF
byte[] fontByte = File.ReadAllBytes(@".\PixelifySans-VariableFont_wght.ttf");
var addedFont = pdf.Fonts.Add(fontByte);

// Draw text on PDF
pdf.DrawText("Iron Software", addedFont.Name, FontSize: 12, PageIndex: 0, X: 100, Y: 600, Color.Black, Rotation: 0);

pdf.SaveAs("drawCustomFont.pdf");
Imports IronPdf
Imports IronSoftware.Drawing
Imports System.IO

Private renderer As New ChromePdfRenderer()
Private pdf As PdfDocument = renderer.RenderHtmlAsPdf("<h1>testing</h1>")

' Add custom font to the PDF
Private fontByte() As Byte = File.ReadAllBytes(".\PixelifySans-VariableFont_wght.ttf")
Private addedFont = pdf.Fonts.Add(fontByte)

' Draw text on PDF
pdf.DrawText("Iron Software", addedFont.Name, FontSize:= 12, PageIndex:= 0, X:= 100, Y:= 600, Color.Black, Rotation:= 0)

pdf.SaveAs("drawCustomFont.pdf")
$vbLabelText   $csharpLabel

繪製圖像範例

使用 IronPDF 的 DrawBitmap 方法,您可以輕鬆地將位圖添加到現有的 PDF 文件中。 此方法的功能類似於圖像蓋章功能,允許您將圖像蓋章到現有的PDF上。

[{i:(DrawBitmap 方法最適合用於大型圖像。 嘗試使用較小解析度的圖像時,您可能會遇到以下異常:IronPdf.Exceptions.IronPdfNativeException: '繪製圖像時出錯:數據長度 (567000) 小於預期 (756000)'。為了解決此問題,您可以使用 Image Stamper,它可以無縫處理各種大小的圖像。

示例圖片

1200 x 627 圖片

代碼

:path=/static-assets/pdf/content-code-examples/how-to/draw-text-and-bitmap-draw-bitmap.cs
using IronPdf;
using IronSoftware.Drawing;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>testing</h1>");

// Open the image from file
AnyBitmap bitmap = AnyBitmap.FromFile("ironSoftware.png");

// Draw the bitmp on PDF
pdf.DrawBitmap(bitmap, 0, 50, 250, 500, 300);

pdf.SaveAs("drawImage.pdf");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel

輸出 PDF

Chaknith related to 輸出 PDF
軟體工程師
Chaknith 是開發者界的夏洛克福爾摩斯。他第一次意識到自己可能有個軟體工程的未來,是在他為了娛樂而參加程式挑戰的時候。他的重點是 IronXL 和 IronBarcode,但他也引以為豪的是,他幫助客戶解決所有產品的問題。Chaknith 利用他與客戶直接對話中獲得的知識,以進一步改進產品。他的實際反饋超越了 Jira 工單,並支持產品開發、文件撰寫和行銷,以提升客戶的整體體驗。不在公司時,他通常在學習機器學習、寫程式和徒步旅行。