次の方法で共有


Graphics.Dispose メソッド

この Graphics オブジェクトによって使用されているすべてのリソースを解放します。

Public Overridable Sub Dispose() Implements IDisposable.Dispose
[C#]
public virtual void Dispose();
[C++]
public: virtual void Dispose();
[JScript]
public function Dispose();

戻り値

このメソッドは値を返しません。

実装

IDisposable.Dispose

解説

Dispose を呼び出すと、この Graphics オブジェクトで使用されているリソースをほかの目的に再割り当てできます。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • グラフィックス ファイル SampImag.jpg からサンプルのディレクトリに Image オブジェクトを作成します。
  • Image オブジェクトから Graphics オブジェクトを作成します。
  • 内部の四角形を塗りつぶしてイメージを変更します。
  • 画面に Image オブジェクトを描画します。
  • 作成された Graphics オブジェクトを解放します。
 
Public Sub FromImageImage(e As PaintEventArgs)
' Create image.
Dim imageFile As Image = Image.FromFile("SampImag.jpg")
' Create graphics object for alteration.
Dim newGraphics As Graphics = Graphics.FromImage(imageFile)
' Alter image.
newGraphics.FillRectangle(New SolidBrush(Color.Black), 100, _
50, 100, 100)
' Draw image to screen.
e.Graphics.DrawImage(imageFile, New PointF(0F, 0F))
' Dispose of graphics object.
newGraphics.Dispose()
End Sub
        
[C#] 
public void FromImageImage(PaintEventArgs e)
{
// Create image.
Image imageFile = Image.FromFile("SampImag.jpg");
// Create graphics object for alteration.
Graphics newGraphics = Graphics.FromImage(imageFile);
// Alter image.
newGraphics.FillRectangle(new SolidBrush(Color.Black), 100, 50, 100, 100);
// Draw image to screen.
e.Graphics.DrawImage(imageFile, new PointF(0.0F, 0.0F));
// Release graphics object.
newGraphics.Dispose();
}
        

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

Graphics クラス | Graphics メンバ | System.Drawing 名前空間