このステップバイステップのチュートリアルでは、** C#の画像からGIFを作成する方法について説明します。プロセスを簡単に理解するために、プログラムの論理フローとともに環境を構成するための詳細な手順を提供します。 ** C#アニメーションGIF **を使用することにより、JPG、PNG、BMPなどのさまざまな種類の画像を使用してGIFファイルを作成する作成コードも最後に提供されます。
C#で画像からGIFを作成する手順
- プロジェクトでAspose.Imaging for .NETを使用してGIFを作成するための環境を確立します
- ディスク上の画像ファイルを使用してraster imagesのリストを作成します
- リストの最初のラスター画像を使用してGIF imageを作成します
- 残りのリストを解析し、各画像をGIF画像に追加します
- GIF画像をディスクに保存します
上記の手順は、* C#を使用して画像からGIFを作成する方法を説明しています。ステップバイステップのアプローチを共有します。最初にすべての画像がRasterImageクラスオブジェクトのリストに読み込まれ、次に最初の画像を使用してGIFファイルが作成されます。リスト内の画像。 GIF画像が作成されたら、必要なGIF画像を作成するために必要な数の画像を追加できます。
C#で画像からGIFを作成するコード
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using Aspose.Imaging; | |
using Aspose.Imaging.FileFormats.Gif; | |
using Aspose.Imaging.FileFormats.Gif.Blocks; | |
namespace CreateGifFromImagesInCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) // Main function to create GIF from images in CSharp | |
{ | |
// Load the license to create a GIF image without | |
// the trial version watermark in it | |
Aspose.Imaging.License licCreateGif= new Aspose.Imaging.License(); | |
licCreateGif.SetLicense("Aspose.Imaging.lic"); | |
// Get the list of raster images having pictures in it from the given folder | |
var rasterImages = LoadRasterImages("AnimationImages/").ToArray(); | |
// From the first frame, create a GIF image | |
using (var gifImage = new GifImage(new GifFrameBlock(rasterImages[0]))) | |
{ | |
// Once the GIF is created, add rest of the frames in it | |
for (var imageIndex = 1; imageIndex < rasterImages.Length; imageIndex++) | |
{ | |
// Add frame using the GifImage.AddPage function | |
gifImage.AddPage(rasterImages[imageIndex]); | |
} | |
// Save the output GIF image | |
gifImage.Save("Multipage.gif"); | |
} | |
System.Console.WriteLine("Done"); | |
} | |
//Function to load the images from the given directory into the collection of RasterImage | |
private static IEnumerable<RasterImage> LoadRasterImages(string directory) | |
{ | |
foreach (var imagePath in Directory.GetFiles(directory)) | |
{ | |
yield return (RasterImage)Image.Load(imagePath); | |
} | |
} | |
} | |
} |
このコードは、上記の手順に従って* C#を使用してアニメーションGIF*を作成する方法を示しています。最初の画像からGIFを作成する場合、カラーパレットを設定することもできます。上記の例のように設定しない場合は、デフォルトのカラーパレットが使用されます。また、ディスクからリストに画像をロードする際に、カスタムフォントソースの設定、大きな画像を処理するためのバッファサイズヒントの設定、およびピクセル値が一部の理由で復元できない場合のデータ背景色の設定をサポートするLoadOptionsクラスオブジェクトを使用できます。エラー。
この記事では、数行のコードのみを使用して* C#createGIF*を使用する方法を説明しました。画像の回転などの他の機能に興味がある場合は、C#で画像を回転させる方法の記事を参照してください。