需要以 PNG 图像 GIF 格式吗?随着Aspose.Words for C++任何开发人员可以轻松地将 PNG 成 GIF 只需几行 C++ 代码。
现代图像处理 C++ API 从 PNG 图片高速 GIF 直接在浏览器中 PNG 到 GIF 图像转换的质量。强大的 C++ 库允许将 PNG 图像转换为许多流行的图形格式。
以下示例演示如何将 PNG 中的 GIF C++ 。
按照简单的步骤将 PNG 转换为 GIF 格式。从本地驱动器读取 PNG 图像,然后将其保存为 GIF GIF 扩展名指定所需的图像格式。对于 PNG 读取和 GIF 写入,您可以使用完全限定的文件名。输出 GIF 内容将与原始 PNG 图像相同。
dotnet add package Aspose.Words.Cpp
复制
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.png");
shape->GetShapeRenderer()->Save(u"Output.gif", MakeObject<ImageSaveOptions>(SaveFormat::Gif));
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.png");
doc->Save(u"Output.gif");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.png");
for (int page = 0; page < doc->get_PageCount(); page++)
{
auto extractedPage = doc->ExtractPages(page, 1);
extractedPage->Save(String::Format(u"Output_{0}.gif", page + 1));
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
builder->InsertImage(u"Input.png");
doc->Save(u"Output.gif");
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.png");
shape->GetShapeRenderer()->Save(u"Output.gif", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
有三个选项可以将 Aspose.Words for C++ 安装到您的开发人员环境中。请选择符合您需求的一种,并按照分步说明进行操作:
您可以使用这个 C++ 库在 Microsoft Windows 、Linux 和 macOS 操作系统上开发软件:
如果您为 Linux 或 macOS 开发软件,请查看产品文档中 fontconfig 和 mesa-glu 开源包)的信息。
您可以将PNG转换为许多其他文件格式: