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 開源包)的信息。