需要以編程方式將 PNG 圖像轉換為 DOCX?借助Aspose.Words for .NET,任何開發人員只需幾行 C# 代碼即可將 PNG 轉換為 DOCX 文檔格式。
現代圖像處理 C# API 從具有專業品質的 PNG 圖像創建 DOCX 文檔。直接在瀏覽器中測試最高質量的 PNG 到 DOCX 轉換。強大的 C# 庫允許將 PNG 圖像轉換為幾乎所有 DOCX 格式。
以下示例演示瞭如何在 C# 中將 PNG 轉換為 DOCX 文檔格式。
按照簡單的步驟將 PNG 圖像轉換為 DOCX 文檔格式。從本地驅動器讀取 PNG 文件,然後只需將其保存為文檔格式,並通過 DOCX 文檔擴展名指定所需的文件格式。對於 PNG 讀取和 DOCX 文檔寫入,您可以使用完全限定的文件名。
dotnet add package Aspose.Words
複製
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
builder.InsertImage("Input.png");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document("Input.png");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document("Input.png");
for (int page = 0; page < doc.PageCount; page++)
{
var extractedPage = doc.ExtractPages(page, 1);
extractedPage.Save($"Output_{page + 1}.docx");
}
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
builder.InsertImage("Input.png");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
var shape = builder.InsertImage("Input.png");
shape.GetShapeRenderer().Save("Output.docx", new ImageSaveOptions(SaveFormat.docx));
在您的系統上 "Aspose.Words for .NET" 有三個備選選項。請選擇符合您需求的一種,並按照分步說明進行操作:
我們的產品完全跨平台,支援所有主要的 .NET 實作:
由於 .NET 程式碼不依賴底層硬體或作業系統,而僅依賴虛擬機,因此您可以自由地為 Windows、macOS、Android、iOS 和 Linux 開發任何類型的軟體。只要確保您已安裝對應版本的.NET Framework, .NET Core, Windows Azure, Mono或Xamarin即可。
我們建議使用 Microsoft Visual Studio、Xamarin 和 MonoDevelop 整合開發環境來建立C#, F#, VB.NET應用程式。
更多詳細資訊請參閱產品文件。
您可以將PNG轉換為許多其他文件格式: