將 PostScript EPS 或 PS 文件轉換為常規圖像格式是您可能需要完成的一項常見任務。如果您有大量此類文件,以編程方式轉換它們會更有效。鑑於此,本文將教您如何使用 C++ 將 PostScript EPS/PS 文件轉換為 PNG 或 JPG 圖像格式。
- 用於將 PostScript EPS/PS 文件轉換為 PNG 或 JPG 圖像的 C++ API
- 使用 C++ 將 PostScript EPS/PS 文件轉換為 PNG 圖像格式
- 使用 C++ 將 PostScript EPS/PS 文件轉換為 JPG 圖像格式
用於將 PostScript EPS/PS 文件轉換為 PNG 或 JPG 圖像的 C++ API
Aspose.Page for C++ 是一個用於呈現和操作 XPS 和 PostScript 文件的 C++ 庫。您可以使用它來處理 XPS 和 EPS/PS 文件並將其轉換為其他幾種格式,例如 PDF、JPEG、BMP、TIFF 等。您可以通過 NuGet 安裝 API 或直接從 下載 部分下載。
PM> Install-Package Aspose.Page.Cpp
使用 C++ 將 PostScript EPS/PS 文件轉換為 PNG 圖像格式
以下是將 EPS 或 PS 文件轉換為 PNG 圖像格式的步驟。
- 初始化 PostScript 輸入流。
- 使用輸入流創建 PsDocument 類的實例。
- 實例化 ImageSaveOptions 類的對象。
- 創建 ImageDevice 類的實例。
- 使用 [PsDocument->Save(System::SharedPtr) 將 PostScript 文件保存到 ImageDeviceAspose::Page::Device設備,系統::SharedPtr選項)]14 方法。
- 使用 ImageDevice->getImagesBytes() 方法檢索圖像字節。
- 遍歷圖像字節。
- 初始化輸出流並保存 PNG 圖像。
以下示例代碼顯示瞭如何使用 C++ 將 PostScript EPS/PS 文件轉換為 PNG 圖像格式。
// 創建 ImageFormat 類的實例
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>(u"SourceDirectory\\inputForImage.ps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
// 創建 PsDocument 類的實例
System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(psStream);
// 如果你想在有小錯誤的情況下轉換 Postscript 文件,請設置此標誌
bool suppressErrors = true;
// 使用必要的參數初始化 ImageSaveOptions 對象。
System::SharedPtr<Aspose::Page::EPS::Device::ImageSaveOptions> options = System::MakeObject<Aspose::Page::EPS::Device::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(System::String(u"OutputDirectory\\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++;
}
}
使用 C++ 將 PostScript EPS/PS 文件轉換為 JPG 圖像格式
要將 EPS 或 PS 文件轉換為 JPG 圖像格式,請使用以下步驟。
- 初始化 PostScript 輸入流。
- 使用輸入流創建 PsDocument 類的實例。
- 創建 ImageSaveOptions 類的實例。
- 實例化 ImageFormat 類的對象。
- 使用 ImageFormat 對象創建 ImageDevice 類的實例。
- 使用 [PsDocument->Save(System::SharedPtr) 將 PostScript 文件保存到 ImageDeviceAspose::Page::Device設備,系統::SharedPtr選項)]22 方法。
- 使用 ImageDevice->getImagesBytes() 方法檢索圖像字節。
- 遍歷圖像字節。
- 初始化輸出流並保存 JPG 圖像。
以下示例代碼演示瞭如何使用 C++ 將 PostScript EPS/PS 文件轉換為 JPG 圖像格式。
// 初始化 PostScript 輸入流
System::SharedPtr<System::IO::FileStream> psStream = System::MakeObject<System::IO::FileStream>(u"SourceDirectory\\inputForImage.ps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
// 創建 PsDocument 類的實例
System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(psStream);
// 如果你想在有小錯誤的情況下轉換 Postscript 文件,請設置此標誌
bool suppressErrors = true;
// 使用必要的參數初始化 ImageSaveOptions 對象。
System::SharedPtr<Aspose::Page::EPS::Device::ImageSaveOptions> options = System::MakeObject<Aspose::Page::EPS::Device::ImageSaveOptions>(suppressErrors);
// 如果要添加存儲字體的特殊文件夾。操作系統中的默認字體文件夾始終包含在內。
options->set_AdditionalFontsFolders(System::MakeArray<System::String>({ u"{FONT_FOLDER}" }));
// 創建 ImageFormat 類的實例
System::SharedPtr<System::Drawing::Imaging::ImageFormat> imageFormat = System::Drawing::Imaging::ImageFormat::get_Jpeg();
// 默認圖像格式為 PNG,並不強制在 ImageDevice 中設置它
// 默認圖像大小為 595x842,並不強制在 ImageDevice 中設置它
System::SharedPtr<Aspose::Page::EPS::Device::ImageDevice> device = System::MakeObject<Aspose::Page::EPS::Device::ImageDevice>(imageFormat);
// 但是,如果您需要指定大小和圖像格式,請使用帶參數的構造函數
//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(System::String(u"OutputDirectory\\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++;
}
}
獲得免費許可證
您可以通過申請 免費的臨時許可證 來試用沒有評估限制的 API。
結論
在本文中,您學習瞭如何使用 C++ 將 PostScript EPS/PS 文件轉換為 PNG 和 JPG 圖像格式。您已經看到了完整的代碼片段以及實現此目的所需的步驟。 Aspose.Page for C++ 提供了許多附加功能,您可以通過訪問 官方文檔 詳細了解這些功能。如有任何疑問,請隨時通過我們的 免費支持論壇 與我們聯繫。