現代 C++ 庫允許 C++ 開發人員使用幾行代碼 圖片 轉換為 JPG 圖片 轉換引擎分析原始內容,將合併結果導出為一張 JPG 圖像。
使用 C++ 以最大的靈活性和速度 圖片 轉換為 JPG 運行在線實時演示並在瀏覽器中 JPG 圖片 轉換 API 支持一堆有用的選項。
要將 圖片 文件轉換為 JPG 圖像,只需使用處理所有低級細節的 C++
轉換多個 圖片 並將結果保存為單個 JPG 圖像。如果您在 C++ 開發代碼, 圖片 格式轉換將比聽起來簡單。請參閱 C++ 示例,該示例遍歷源 圖片 文件並將它們組合成一個 JPG 圖像:
dotnet add package Aspose.Words.Cpp
複製
using namespace Aspose::Words;
std::vector<String> fileNames { u"Input1.png", u"Input2.png" };
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.jpg");
有三個選項可以將 Aspose.Words for C++ 安裝到您的開發人員環境中。請選擇符合您需求的一種,並按照分步說明進行操作:
您可以使用這個 C++ 庫在 Microsoft Windows 、Linux 和 macOS 操作系統上開發軟件:
如果您為 Linux 或 macOS 開發軟件,請查看產品文檔中 fontconfig 和 mesa-glu 開源包)的信息。
您可以將圖片合併為許多其他文件格式: