Aspose.ImagingのImage Merger for .NETプラグインを使用すると、品質の低下なしに画像を垂直または水平に結合でき、多様なフォトコラージュを作成する創造性を育むことができます。この多目的ツールはさまざまなファイル形式をサポートしており、魅力的な視覚的作品を簡単に作成できる柔軟性を提供しています。
Graphics
クラスを作成しますダウンロード](https://releases.aspose.com/imaging/net/)から対応するアセンブリファイルを取得するか、NuGetからパッケージを取得して、Aspose.Imaging
を直接ワークスペースに追加してください。
using Aspose.Imaging; | |
using Aspose.Imaging.FileFormats.Png; | |
using Aspose.Imaging.ImageOptions; | |
using Aspose.Imaging.Sources; | |
using System.Collections.Generic; | |
using System.IO; | |
string templatesFolder = @"c:\Users\USER\Downloads\templates\"; | |
string dataDir = templatesFolder; | |
var images = new List<Image>(); | |
string[] files = new string[] { "template.png", "template.jpg" }; | |
//Indicate how to merge, 0 - horizontal, 1 - vertical | |
byte[] mergeDirection = new byte[] { 0, 1 }; | |
int maxWidth = 0; | |
int maxHeight = 0; | |
int totalWidth = 0; | |
int totalHeight = 0; | |
foreach (var fileName in files) | |
{ | |
var image = Image.Load(dataDir + fileName); | |
totalWidth += image.Width; | |
if (image.Width > maxWidth) | |
{ | |
maxWidth = image.Width; | |
} | |
totalHeight += image.Height; | |
if (image.Height > maxHeight) | |
{ | |
maxHeight = image.Height; | |
} | |
images.Add(image); | |
} | |
MergeImages(0); | |
MergeImages(1); | |
images.ForEach(image => image.Dispose()); | |
File.Delete(dataDir + "result.gif"); | |
void MergeImages(byte direction) | |
{ | |
int targetWidth, targetHeight; | |
if (direction == 0) | |
{ | |
targetWidth = totalWidth; | |
targetHeight = maxHeight; | |
} | |
else | |
{ | |
targetWidth = maxWidth; | |
targetHeight = totalHeight; | |
} | |
var outputPath = dataDir; | |
outputPath = Path.Combine(outputPath, "result" + direction + ".png"); | |
var pngOptions = new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha }; | |
using (Stream stream = new MemoryStream()) | |
{ | |
pngOptions.Source = new StreamSource(stream); | |
using (var image = Image.Create(pngOptions, targetWidth, targetHeight)) | |
{ | |
image.BackgroundColor = Color.White; | |
var graphics = new Graphics(image); | |
float x = 0, y = 0; | |
images.ForEach(image => | |
{ | |
graphics.DrawImage(image, new RectangleF(x, y, image.Width, image.Height)); | |
if (direction == 0) | |
{ | |
x += image.Width; | |
} | |
if (direction == 1) | |
{ | |
y += image.Height; | |
} | |
}); | |
image.Save(outputPath); | |
} | |
} | |
File.Delete(outputPath); | |
} |
.NETのイメージマージャーは、デザイナーや写真家にとって必須のツールであり、素晴らしいコラージュを手軽に作成できます。パフォーマンスが最適化されており、ラグなしで高解像度の画像を処理できるため、迅速で生産的なワークフローが可能です。
写真のコラージュは、複数の画像を組み合わせて新しい写真やイメージを作成することです。これらの画像は直接関連していない場合があり、多様で創造的な構図を作ることができます。
写真家は、1つの画像を別の画像の上に重ねたり、多くの画像を1つの全体に組み合わせることで、フォトコラージュで望む効果を得ることができます。このプロセスには2つ以上の画像が関与することがあり、その結果は様々な写真画像が混在し、パズルやモザイクに似た混沌とした使用が含まれるかもしれません。
Aspose.ImagingのImage Merger for .NETプラグインは、WEBP、WMF、TIFF、PNG、SVG、ODG、OTG、JPG、JP2、ICO、J2K、EPS、GIF、DNG、EMF、DJVU、DIB、DICOM、CDR、CMX、APNG、およびBMPを含む、幅広い画像形式のマージをサポートしています。
2枚以上の画像を縦または横にシームレスに組み合わせることができ、品質が劣化しません。
動作する例やサンプルの詳細については、GitHubリポジトリをチェックしてください。