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