需要以編程方式將 TXT 文檔轉換為圖像格式?借助Aspose.Words for C++,任何開發人員只需幾行 C++ 代碼即可將 TXT 文檔轉換為圖像。
現代文檔處理 C++ API 可以高速從 TXT 文檔創建圖像。直接在瀏覽器中測試 TXT 到圖像轉換的質量。強大的 C++ 庫允許將 TXT 文件轉換為許多流行的格式。
以下示例演示如何將 TXT 文檔轉換為 C++ 中的一組圖像。
按照簡單的步驟將 TXT 文檔轉換為圖像格式。從本地驅動器讀取 TXT 文件,然後只需將其保存為圖像格式,並通過圖像擴展名指定所需的文件格式。對於 TXT 讀取和圖像寫入,您可以使用完全限定的文件名。輸出圖像內容和格式將與原始 TXT 文檔相同。
dotnet add package Aspose.Words.Cpp
複製
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Jpg);
for (int page = 0; page < doc->get_PageCount(); page++)
{
saveOptions->set_PageSet(MakeObject<PageSet>(page));
doc->Save(String::Format(u"Output_{0}.jpg", page + 1), saveOptions);
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
doc->Save(u"Output.jpg");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Png);
for (int page = 0; page < doc->get_PageCount(); page++)
{
saveOptions->set_PageSet(MakeObject<PageSet>(page));
doc->Save(String::Format(u"Output_{0}.jpg", page + 1), saveOptions);
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
builder->InsertImage(u"Input.txt");
doc->Save(u"Output.jpg");
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.txt");
shape->GetShapeRenderer()->Save(u"Output.jpg", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
有三個選項可以將 Aspose.Words for C++ 安裝到您的開發人員環境中。請選擇符合您需求的一種,並按照分步說明進行操作:
您可以使用這個 C++ 庫在 Microsoft Windows 、Linux 和 macOS 操作系統上開發軟件:
如果您為 Linux 或 macOS 開發軟件,請查看產品文檔中 fontconfig 和 mesa-glu 開源包)的信息。
您可以將TXT轉換為許多其他文件格式: