PostScript XPS 转 PDF 和图像 C++

在我的 previous 帖子中,我向您展示了使用 Aspose.Page for C++ 以编程方式创建或编辑 PostScript (PS/EPS) 和 XPS 文档是多么容易。在本文中,我将演示如何使用 C++ 将 PS/EPS 或 XPS 文档转换为 PDF 或光栅图像格式,包括 PNG、JPEG、TIFF 和 BMP。本文的其余部分由以下部分组成:

在开始之前,我假设您已经下载了 Aspose.Page for C++ 并在您的 C++ 项目中引用了它。但是,如果您还没有,您可以从 NuGet 安装它,或者从 Downloads 部分下载完整的软件包以及即插即用控制台应用程序。

在 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)
{
	//自动 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 转换为图像格式的步骤。

以下代码示例显示了如何将 PostScript PS/EPS 转换为 C++ 中的图像。

// 初始化 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)
{
	//自动 ex_enumerator = (System::DynamicCastEnumerableTo<PsConverterException> (选项->get_Exceptions()))->GetEnumerator();
	//decltype(ex_enumerator->get_Current()) ex;
	//而 (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++ 的更多信息。

也可以看看