在我的 上一篇 帖子中,我向您展示了使用 Aspose.Page for C++ 以編程方式創建或編輯 PostScript (PS/EPS) 和 XPS 文檔是多麼容易。在本文中,我將演示如何使用 C++ 將 PS/EPS 或 XPS 文檔轉換為 PDF 或光柵圖像格式,包括 PNG、JPEG、TIFF 和 BMP。本文的其餘部分由以下部分組成:
- 在 C++ 中將 PostScript PS/EPS 轉換為 PDF
- 在 C++ 中將 PostScript PS/EPS 轉換為圖像
- 在 C++ 中將 XPS 轉換為 PDF
- 在 C++ 中將 XPS 轉換為圖像
在我們開始之前,我假設您已經下載了 Aspose.Page for C++ 並在您的 C++ 項目中引用了它。但是,如果您還沒有,可以從 NuGet 安裝它,或者從 下載 部分下載完整的軟件包以及即插即用控制台應用程序。
在 C++ 中將 PostScript PS/EPS 轉換為 PDF
以下是將 PostScript PS/EPS 文檔轉換為 PDF 的步驟:
- 為輸出 PDF 文件創建一個 FileStream 對象。
- 在 FileStream 對像中加載輸入 PostScript 文檔。
- 使用輸入流創建並初始化 PsDocument 對象。
- 使用輸出流創建並初始化 PdfDevice 對象。
- 使用 PsDocument->Save 方法處理文檔並將其保存為 PDF 文件。
以下代碼示例顯示瞭如何在 C++ 中將 PostScript PS 文檔轉換為 PDF。
// 初始化 PDF 輸出流
System::SharedPtr<System::IO::FileStream> pdfStream = System::MakeObject<System::IO::FileStream>(value + u"PStoPDF.pdf", System::IO::FileMode::Create, System::IO::FileAccess::Write);
// 初始化 PostScript 輸入流
System::SharedPtr<System::IO::FileStream> psStream = System::MakeObject<System::IO::FileStream>(value + u"input.ps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(psStream);
// 如果你想在有小錯誤的情況下轉換 Postscript 文件,請設置此標誌
bool suppressErrors = true;
// 使用必要的參數初始化選項對象。
System::SharedPtr<PdfSaveOptions> options = System::MakeObject<PdfSaveOptions>(suppressErrors);
// 如果要添加存儲字體的特殊文件夾。操作系統中的默認字體文件夾始終包含在內。
options->set_AdditionalFontsFolders(System::MakeArray<System::String>({ u"{FONT_FOLDER}" }));
// 默認頁面大小為 595x842 並且不強制在 PdfDevice 中設置它
System::SharedPtr<Aspose::Page::EPS::Device::PdfDevice> device = System::MakeObject<Aspose::Page::EPS::Device::PdfDevice>(pdfStream);
// 但是,如果您需要指定大小和圖像格式,請使用以下行:
// Aspose.Page.EPS.Device.PdfDevice device = new Aspose.Page.EPS.Device.PdfDevice(pdfStream, new System.Drawing.Size(595, 842));
{
auto __finally_guard_0 = ::System::MakeScopeGuard([&psStream, &pdfStream]()
{
psStream->Close();
pdfStream->Close();
});
try
{
document->Save(device, options);
}
catch (...)
{
throw;
}
}
// 檢查錯誤
if (suppressErrors)
{
//auto ex_enumerator = (System::DynamicCastEnumerableTo<PsConverterException> (選項->get_Exceptions()))->GetEnumerator();
auto ex_enumerator = (options->get_Exceptions())->GetEnumerator();
decltype(ex_enumerator->get_Current()) ex;
while (ex_enumerator->MoveNext() && (ex = ex_enumerator->get_Current(), true))
{
System::Console::WriteLine(ex->get_Message());
}
}
在 C++ 中將 PostScript PS/EPS 轉換為圖像
以下是將 PS/EPS 轉換為圖像格式的步驟。
- 創建一個ImageFormat的對象來設置輸出圖像的格式,即PNG。
- 在 FileStream 對像中加載輸入 PostScript 文檔。
- 使用輸入流創建並初始化 PsDocument 對象。
- 創建 ImageDevice 的對象。
- 使用 PsDocument->Save 方法處理文檔並將其保存為圖像。
以下代碼示例顯示瞭如何在 C++ 中將 PostScript PS/EPS 轉換為圖像。
// 初始化 PDF 輸出流
System::SharedPtr<System::Drawing::Imaging::ImageFormat> imageFormat = System::Drawing::Imaging::ImageFormat::get_Png();
// 初始化 PostScript 輸入流
System::SharedPtr<System::IO::FileStream> psStream = System::MakeObject<System::IO::FileStream>(value + u"inputForImage.ps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(psStream);
// 如果你想轉換 PostScript 文件儘管有小錯誤設置這個標誌
bool suppressErrors = true;
// 使用必要的參數初始化選項對象。
System::SharedPtr<ImageSaveOptions> options = System::MakeObject<ImageSaveOptions>(suppressErrors);
// 如果要添加存儲字體的特殊文件夾。操作系統中的默認字體文件夾始終包含在內。
options->set_AdditionalFontsFolders(System::MakeArray<System::String>({ u"{FONT_FOLDER}" }));
// 默認圖像格式為 PNG,並不強制在 ImageDevice 中設置它
// 默認圖像大小為 595x842,並不強制在 ImageDevice 中設置它
System::SharedPtr<Aspose::Page::EPS::Device::ImageDevice> device = System::MakeObject<Aspose::Page::EPS::Device::ImageDevice>();
// 但是,如果您需要指定大小和圖像格式,請使用帶參數的構造函數
//ImageDevice device = new ImageDevice(new System.Drawing.Size(595, 842), System.Drawing.Imaging.ImageFormat.Jpeg);
{
auto __finally_guard_0 = ::System::MakeScopeGuard([&psStream]()
{
psStream->Close();
});
try
{
document->Save(device, options);
}
catch (...)
{
throw;
}
}
System::ArrayPtr<System::ArrayPtr<uint8_t>> imagesBytes = device->get_ImagesBytes();
int32_t i = 0;
{
for (System::ArrayPtr<uint8_t> imageBytes : imagesBytes)
{
System::String imagePath = System::IO::Path::GetFullPath(value + System::String(u"out_image") + System::Convert::ToString(i) + u"." + System::ObjectExt::ToString(imageFormat).ToLower());
{
System::SharedPtr<System::IO::FileStream> fs = System::MakeObject<System::IO::FileStream>(imagePath, System::IO::FileMode::Create, System::IO::FileAccess::Write);
// 清除“正在使用”語句下的資源
System::Details::DisposeGuard<1> __dispose_guard_1({ fs });
try
{
fs->Write(imageBytes, 0, imageBytes->get_Length());
}
catch (...)
{
__dispose_guard_1.SetCurrentException(std::current_exception());
}
}
i++;
}
}
// 檢查錯誤
if (suppressErrors)
{
//auto ex_enumerator = (System::DynamicCastEnumerableTo<PsConverterException> (選項->get_Exceptions()))->GetEnumerator();
//decltype(ex_enumerator->get_Current()) ex;
//while (ex_enumerator->MoveNext() && (ex = ex_enumerator->get_Current(), true))
//{
// System::Console::WriteLine(ex->get_Message());
//}
}
在 C++ 中將 XPS 轉換為 PDF
以下是將 XPS 文檔轉換為 PDF 的步驟:
- 為輸入 XPS 和輸出 PDF 文件創建 FileStream 對象。
- 將 XPS 文檔流加載到 XpsDocument 對像中。
- 創建 PdfDevice 類的對象並使用輸出流對其進行初始化。
- 使用 XpsDocument->Save 方法將 XPS 文檔轉換為 PDF。
以下代碼示例顯示瞭如何在 C++ 中將 XPS 文檔轉換為 PDF。
System::SharedPtr<System::IO::Stream> pdfStream = System::IO::File::Open(u"XPStoPDF.pdf", System::IO::FileMode::Create, System::IO::FileAccess::Write);
// 清除“正在使用”語句下的資源
System::Details::DisposeGuard<1> __dispose_guard_1({ pdfStream });
try {
System::SharedPtr<System::IO::Stream> xpsStream = System::IO::File::Open(u"input.xps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
// 清除“正在使用”語句下的資源
System::Details::DisposeGuard<1> __dispose_guard_0({ xpsStream });
try
{
// 從流中加載 XPS 文檔
System::SharedPtr<XpsDocument> document = System::MakeObject<XpsDocument>(xpsStream, System::MakeObject<XpsLoadOptions>());
// 或直接從文件加載 XPS 文檔。那麼就不需要 xpsStream 了。
// XpsDocument 文檔 = new XpsDocument(inputFileName, new XpsLoadOptions());
// 使用必要的參數初始化選項對象。
System::SharedPtr<Aspose::Page::XPS::Presentation::Pdf::PdfSaveOptions> options = [&] { auto tmp_0 = System::MakeObject<Aspose::Page::XPS::Presentation::Pdf::PdfSaveOptions>(); tmp_0->set_JpegQualityLevel(100); tmp_0->set_ImageCompression(Aspose::Page::XPS::Presentation::Pdf::PdfImageCompression::Jpeg); tmp_0->set_TextCompression(Aspose::Page::XPS::Presentation::Pdf::PdfTextCompression::Flate); tmp_0->set_PageNumbers(System::MakeArray<int32_t>({ 1, 2, 6 })); return tmp_0; }();
// 為PDF格式創建渲染器
System::SharedPtr<Aspose::Page::XPS::Presentation::Pdf::PdfDevice> device = System::MakeObject<Aspose::Page::XPS::Presentation::Pdf::PdfDevice>(pdfStream);
document->Save(device, options);
}
catch (...)
{
__dispose_guard_0.SetCurrentException(std::current_exception());
}
}
catch (...)
{
__dispose_guard_1.SetCurrentException(std::current_exception());
}
在 C++ 中將 XPS 轉換為圖像
以下是將 XPS 文檔轉換為光柵圖像格式的步驟:
- 將輸入的 XPS 文檔加載到 FileStream 對像中。
- 創建 XpsDocument 的對象並使用輸入流對像對其進行初始化。
- 通過創建 PngSaveOptions 類的對象來設置保存選項。
- 使用 XpsDocument->Save 方法將 XPS 轉換為圖像。
以下代碼示例顯示瞭如何在 C++ 中將 XPS 轉換為 PNG 圖像。
// 輸入文件
System::String inputFileName = u"input.xps";
// 輸出文件
System::String outputFileName = u"XPStoImage_out.png";
// 初始化 XPS 輸入流
{
System::SharedPtr<System::IO::Stream> xpsStream = System::IO::File::Open(inputFileName, System::IO::FileMode::Open, System::IO::FileAccess::Read);
// 清除“正在使用”語句下的資源
System::Details::DisposeGuard<1> __dispose_guard_1({ xpsStream });
try
{
// 從流中加載 XPS 文檔
System::SharedPtr<XpsDocument> document = System::MakeObject<XpsDocument>(xpsStream, System::MakeObject<XpsLoadOptions>());
// 或直接從文件加載 XPS 文檔。那麼就不需要 xpsStream 了。
// XpsDocument 文檔 = new XpsDocument(inputFileName, new XpsLoadOptions());
// 使用必要的參數初始化選項對象。
System::SharedPtr<PngSaveOptions> options = [&] { auto tmp_0 = System::MakeObject<PngSaveOptions>(); tmp_0->set_SmoothingMode(System::Drawing::Drawing2D::SmoothingMode::HighQuality); tmp_0->set_Resolution(300); tmp_0->set_PageNumbers(System::MakeArray<int32_t>({ 1, 2, 6 })); return tmp_0; }();
// 為PDF格式創建渲染器
System::SharedPtr<ImageDevice> device = System::MakeObject<ImageDevice>();
document->Save(device, options);
// 遍歷文檔分區(固定文檔,在 XPS 術語中)
for (int32_t i = 0; i < device->get_Result()->get_Length(); i++)
{
for (int32_t j = 0; j < device->get_Result()[i]->get_Length(); j++)
{
// 初始化圖像輸出流
{
System::SharedPtr<System::IO::Stream> imageStream = System::IO::File::Open(System::IO::Path::GetDirectoryName(outputFileName) + u"\\" + System::IO::Path::GetFileNameWithoutExtension(outputFileName) + u"_" + (i + 1) + u"_" + (j + 1) + System::IO::Path::GetExtension(outputFileName), System::IO::FileMode::Create, System::IO::FileAccess::Write);
// 清除“正在使用”語句下的資源
System::Details::DisposeGuard<1> __dispose_guard_0({ imageStream });
try
{
imageStream->Write(device->get_Result()[i][j], 0, device->get_Result()[i][j]->get_Length());
}
catch (...)
{
__dispose_guard_0.SetCurrentException(std::current_exception());
}
}
}
}
}
catch (...)
{
__dispose_guard_1.SetCurrentException(std::current_exception());
}
}
要將 XPS 文檔轉換為 BMP、TIFF 和 JPEG,請訪問以下文章。
了解有關 Aspose.Page for C++ 的更多信息
在本文中,您了解瞭如何使用 C++ 將 PS、EPS 和 XPS 文檔轉換為 PDF、PNG、JPEG、TIFF 和 BMP。您可以使用 文檔 和 源代碼示例 了解有關 Aspose.Page for C++ 的更多信息。