幅と高さが64の画像を作成し、すべてのピクセルを黒に設定したいとしましょう
dim b as bitmap
b.width = 64
b.height = 64
for y = 0 to 64
for x = 0 to 64
b.setpixel(x,y ,color.black)
next
next
dim p as new panel
p.width = b.width
p.hieght = b.height
p.backgroundimage(b)
コードが機能しない