将 PostScript EPSPS 文件转换为常规图像格式是您可能需要执行的一项常见任务。如果您有大量此类文件,则以编程方式转换它们会更有效。有鉴于此,本文将教您如何使用 C++ 将 PostScript EPS/PS 文件转换为 PNG 或 JPG 图像格式。

用于将 PostScript EPS/PS 文件转换为 PNG 或 JPG 图像的 C++ API

Aspose.Page for C++ 是一个用于渲染和操作 XPS 和 PostScript 文件的 C++ 库。您可以使用它来处理并将 XPS 和 EPS/PS 文件转换为其他几种格式,例如 PDFJPEGBMPTIFF 等。您可以通过 NuGet 安装 API,也可以直接从 下载 部分下载。

PM> Install-Package Aspose.Page.Cpp

使用 C++ 将 PostScript EPS/PS 文件转换为 PNG 图像格式

以下是将 EPS 或 PS 文件转换为 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 图像格式,请使用以下步骤。

以下示例代码演示了如何使用 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++ 提供了许多附加功能,您可以通过访问 官方文档 详细了解这些功能。如有任何问题,请随时通过我们的 免费支持论坛 与我们联系。

也可以看看