最新の C++ ライブラリを使用すると、 C++ 開発者は、数行のコードで 画像 を BMP 画像 変換エンジンは、元のコンテンツを分析し、結合された結果を1つの BMP 画像としてエクスポートします。
C++ を使用して、 画像 を BMP 画像形式に最大の柔軟性と速度で変換します。オンラインライブデモを実行し、ブラウザで BMP 画像 Conversion APIは、多数の便利なオプションをサポートしています。
画像 ファイルを BMP イメージに変換するには、すべての低レベルの詳細を処理 C++ ライブラリを使用するだけです。
複数の 画像 を変換し、結果を単一の BMP 画像として保存します。 C++ でコードを開発する場合 画像 形式の変換は思ったよりも簡単になります。 画像 ファイルを反復処理し、それらを1つの BMP イメージに C++ 例を参照してください。
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.bmp");
Aspose.Words for C++ を開発者環境にインストールするための3つのオプションがあります。ニーズに合ったものを選択し、ステップバイステップの手順に従ってください。
このC++ライブラリを使用して、 Microsoft Windows 、Linux、およびmacOSオペレーティングシステムでソフトウェアを開発できます。
LinuxまたはmacOS用のソフトウェアを開発する場合は、製品ドキュメント fontconfig および mesa-glu オープンソースパッケージ)に関する情報を確認してください。
画像を他の多くのファイル形式にマージできます。