將 PDF 轉換為 Base64
Curtis Chau
Updated: 2026年4月24日
如何將 PDF 轉換為 Base64?
PdfDocument 物件不包含直接獲取 Base64 的屬性。但是,您可以獲取位元組陣列,然後可以用來獲得 Base64 字串。
using System;
using SomePdfLibrary; // Make sure to import the library used for handling PDF files
class Program
{
static void Main()
{
// Create a PdfDocument object for the specified PDF file
var pdf = new PdfDocument("MyPDF.pdf");
// Get the binary data (byte array) from the PDF document
var byteArray = pdf.BinaryData;
// Convert the byte array to a Base64 string
var base64Result = Convert.ToBase64String(byteArray);
// Output the Base64 result
Console.WriteLine("Base64 of PDF: " + base64Result);
}
}Imports System
Imports SomePdfLibrary ' Make sure to import the library used for handling PDF files
Module Program
Sub Main()
' Create a PdfDocument object for the specified PDF file
Dim pdf As New PdfDocument("MyPDF.pdf")
' Get the binary data (byte array) from the PDF document
Dim byteArray As Byte() = pdf.BinaryData
' Convert the byte array to a Base64 string
Dim base64Result As String = Convert.ToBase64String(byteArray)
' Output the Base64 result
Console.WriteLine("Base64 of PDF: " & base64Result)
End Sub
End Module說明:
PdfDocument初始化:PdfDocument物件以您要轉換的 PDF 文件名進行初始化。 將SomePdfLibrary替換為您使用的實際程式庫。- **
BinaryData檢索:**它檢索給定 PDF 的二進位資料(作為位元組陣列)。 - **Base64 轉換:**使用
Convert.ToBase64String方法將位元組陣列轉換為 Base64 字串。 - **輸出 Base64 字串:**將 Base64 編碼的字串輸出至控制台進行驗證。

技術作家
Curtis Chau擁有Carleton大學的電腦科學學士學位,專精於前端開發,擁有Node.js、TypeScript、JavaScript和React的專業知識。Curtis熱衷於建立直觀且美觀的使用者介面,喜愛使用現代框架並建立結構良好、視覺吸引力的手冊。
...
閱讀更多