DOBON.NET DOBON.NETプログラミング掲示板過去ログ

DrawImageで描画した画像を消したい

環境/言語:[.NET2003]
分類:[.NET]

以下のようにDrawImageを使用して描画した画像を消したいのですがどのようにすればよいのでしょうか?


Dim myBitmap As Bitmap = New System.Drawing.Bitmap(C:\TEST.bmp)

'PictureBox1のGraphicsオブジェクトの作成
Dim g As Graphics = PictureBox1.CreateGraphics()

'表示
g.DrawImage(myBitmap , 0, 0)
お世話になります。

■No14646に返信(ビギナーさんの記事)
こちらの方法では?
http://dobon.net/vb/dotnet/graphics/pictureboximage.html

If Not (PictureBox1.Image Is Nothing) Then
  PictureBox1.Image.Dispose()
  PictureBox1.Image = Nothing
End If

# 実際には書かれていると思いますが、
g.DrawImage の後に、
myBitmap.Dispose()
g.Dispose()
もお忘れなく...

DOBON.NET | プログラミング道 | プログラミング掲示板