C++ 库允许 C++ 开发人员 GIF 图像。 GIF 图像转换引擎分析原始 GIF 内容,然后将组合的图形内容导出为所需格式。
GIF 图像转换可能很棘手,除非您有专业的工具来完成这项工作。使用 C++ 以最大的灵活性和速度 GIF 运行在线实时演示并在浏览器中检查最高图像质量。 GIF 图像转换 API 支持一堆有用的选项。
Aspose.Words for C++增强 GIF 图像格式功能。 GIF 图像与处理所有低级细节的 C++ 库相结合的简单方法。
合并 GIF 图像并将结果保存为单个文件。如果您在 C++ 开发代码,这将比听起来简单。请参阅 C++ 示例,该示例遍历 GIF 图像并将它们组合起来:
dotnet add package Aspose.Words.Cpp
复制
using namespace Aspose::Words;
std::vector<String> fileNames { u"Input1.gif", u"Input2.gif" };
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
std::vector<SharedPtr<Shape>> shapes;
for (const auto& fileName : fileNames)
{
auto shape = builder->InsertImage(fileName);
shapes.push_back(shape);
}
// 计算最大宽度和高度并更新页面设置以裁剪文档以适合图片的大小。
auto maxWidth = *std::max_element(shapes.begin(), shapes.end(),
[](auto lhs, auto rhs) return lhs->get_Width() < rhs->get_Width(); );
double maxHeight =
std::accumulate(shapes.begin(), shapes.end(), 1.0,
[](double result, auto shape) return result + shape->get_Height(); );
auto pageSetup = builder->get_PageSetup();
pageSetup->set_PageWidth(maxWidth->get_Width());
pageSetup->set_PageHeight(maxHeight);
pageSetup->set_TopMargin(0);
pageSetup->set_LeftMargin(0);
pageSetup->set_BottomMargin(0);
pageSetup->set_RightMargin(0);
doc->Save(u"Output.gif");
有三个选项可以将 Aspose.Words for C++ 安装到您的开发人员环境中。请选择符合您需求的一种,并按照分步说明进行操作:
您可以使用这个 C++ 库在 Microsoft Windows 、Linux 和 macOS 操作系统上开发软件:
如果您为 Linux 或 macOS 开发软件,请查看产品文档中 fontconfig 和 mesa-glu 开源包)的信息。