需要以 JPG 圖像 GIF 格式嗎?隨著Aspose.Words for C++任何開發人員可以輕鬆地將 JPG 成 GIF 只需幾行 C++ 代碼。
現代圖像處理 C++ API 從 JPG 圖片高速 GIF 直接在瀏覽器中 JPG 到 GIF 圖像轉換的質量。強大的 C++ 庫允許將 JPG 圖像轉換為許多流行的圖形格式。
以下示例演示如何將 JPG 中的 GIF C++ 。
按照簡單的步驟將 JPG 轉換為 GIF 格式。從本地驅動器讀取 JPG 圖像,然後將其保存為 GIF GIF 擴展名指定所需的圖像格式。對於 JPG 讀取和 GIF 寫入,您可以使用完全限定的文件名。輸出 GIF 內容將與原始 JPG 圖像相同。
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.jpg");
shape->GetShapeRenderer()->Save(u"Output.gif", MakeObject<ImageSaveOptions>(SaveFormat::Gif));
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.jpg");
doc->Save(u"Output.gif");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.jpg");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Png);
for (int page = 0; page < doc->get_PageCount(); page++)
{
saveOptions->set_PageSet(MakeObject<PageSet>(page));
doc->Save(String::Format(u"Output_{0}.gif", page + 1), saveOptions);
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
builder->InsertImage(u"Input.jpg");
doc->Save(u"Output.gif");
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.jpg");
shape->GetShapeRenderer()->Save(u"Output.gif", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
有三個選項可以將 Aspose.Words for C++ 安裝到您的開發人員環境中。請選擇符合您需求的一種,並按照分步說明進行操作:
您可以使用這個 C++ 庫在 Microsoft Windows 、Linux 和 macOS 操作系統上開發軟件:
如果您為 Linux 或 macOS 開發軟件,請查看產品文檔中 fontconfig 和 mesa-glu 開源包)的信息。
您可以將JPG轉換為許多其他文件格式: