バージョン

GetImage(Object,Color,Stream,Boolean) メソッド

val からの画像を取得します。val を Image インスタンスにすることができます。この場合 val を返します。byte[] の場合、バイト配列からストリームを作成することによって Image.FromStream 静的メソッドを使用して、それを Image に変換しようとします。画像が渡されたデータから作成できない場合は null を返します。
シンタックス
'宣言
 
Public Overloads Shared Function GetImage( _
   ByVal val As Object, _
   ByVal transparentColor As Color, _
   ByRef imageStream As Stream, _
   ByRef disposeImage As Boolean _
) As Image
public static Image GetImage( 
   object val,
   Color transparentColor,
   out Stream imageStream,
   out bool disposeImage
)

パラメータ

val
画像に変換する値
transparentColor
Color.Transparent と置き換える画像の色。
imageStream
画像のストリーム表現。画像が TransparentColor を持っている場合、画像が破棄されるまでストリームを保持する必要があります。
disposeImage
画像を破棄するのは呼び出し側の責任かどうかを返します。

戻り値の型

オーナーの値から構成された画像、またはこれが失敗した場合は null。
参照