StreamSource.StreamSource

StreamSource(Stream)

の新しいインスタンスを初期化しますStreamSourceclass.

public StreamSource(Stream stream)
パラメータタイプ説明
streamStream開くストリーム。

この例では、Type Color の配列にピクセル情報をロードし、配列を操作して画像に戻す方法を示します。これらの操作を実行するために、この例では、MemoryStream オブジェクトを使用して新しいイメージ ファイル (PSD 形式) を作成します。

[C#]

//MemoryStream のインスタンスを作成する
using (System.IO.MemoryStream stream = new System.IO.MemoryStream())
{
    //PsdOptions のインスタンスを作成し、Source プロパティを含むさまざまなプロパティを設定します
    Aspose.PSD.ImageOptions.PsdOptions psdOptions = new Aspose.PSD.ImageOptions.PsdOptions();
    psdOptions.Source = new Aspose.PSD.Sources.StreamSource(stream);

    //Image のインスタンスを作成する
    using (Aspose.PSD.RasterImage image = (Aspose.PSD.RasterImage)Aspose.PSD.Image.Create(psdOptions, 500, 500))
    {
        //領域を画像境界として指定して、画像のピクセルを取得します
        Aspose.PSD.Color[] pixels = image.LoadPixels(image.Bounds);

        //配列をループし、代替インデックス付きピクセルの色を設定します
        for (int index = 0; index < pixels.Length; index++)
        {
            if (index % 2 == 0)
            {
                //インデックス付きピクセルの色を黄色に設定
                pixels[index] = Aspose.PSD.Color.Yellow;
            }
            else
            {
                //インデックス付きピクセルの色を青に設定
                pixels[index] = Aspose.PSD.Color.Blue;
            }
        }

        // ピクセルの変更を画像に適用します
        image.SavePixels(image.Bounds, pixels);

        // すべての変更を保存します。
        image.Save();
    }

    //メモリストリームをファイルに書き込む
    stream.WriteTo(new System.IO.FileStream(@"C:\temp\output.psd", System.IO.FileMode.CreateNew));
}

関連項目


StreamSource(Stream, bool)

の新しいインスタンスを初期化しますStreamSourceclass.

public StreamSource(Stream stream, bool disposeStream)
パラメータタイプ説明
streamStream開くストリーム。
disposeStreamBooleanに設定した場合真実ストリームは破棄されます。

この例では、System.IO.Stream を使用して新しいイメージ ファイルを作成する方法を示します。

[C#]

//PsdOptions のインスタンスを作成し、そのさまざまなプロパティを設定します
Aspose.PSD.ImageOptions.PsdOptions psdOptions = new Aspose.PSD.ImageOptions.PsdOptions();

// System.IO.Stream のインスタンスを作成します
System.IO.Stream stream = new System.IO.FileStream(@"C:\temp\sample.psd", System.IO.FileMode.Create);

//PsdOptions のインスタンスのソース プロパティを定義します
// 2 番目のブール値パラメーターは、Stream がスコープ外になった後に破棄されるかどうかを決定します
psdOptions.Source = new Aspose.PSD.Sources.StreamSource(stream, true);

// Image のインスタンスを作成し、PsdOptions をパラメーターとして Create メソッドを呼び出して Image オブジェクトを初期化します   
using (Aspose.PSD.Image image = Aspose.PSD.Image.Create(psdOptions, 500, 500))
{
    // 画像処理を行います
}

関連項目