在vb.net2015中为什么在只用一个picturebox只显示一张图片的情况下,出现“内存不足”的错误

PublicClassForm1FunctionClipImg(inputAsBitmap)AsBitmap(,)DimwAsInteger=input.Width/3,... Public Class Form1

Function ClipImg(input As Bitmap) As Bitmap(,)
Dim w As Integer = input.Width / 3, h As Integer = input.Height / 3
Dim ret(2, 2) As Bitmap
For i As Integer = 0 To 2
For j As Integer = 0 To 2
ret(i, j) = input.Clone(New Rectangle(w * i, h * j, (w * (i + 1)), h * (i + 1)), Imaging.PixelFormat.DontCare)------这里错误
Next
Next
Return ret

End Function

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim img As New Bitmap("E:\kenan.jpg")
PictureBox1.Image = img
Dim a(,) As Bitmap
a = ClipImg(img)
PictureBox1.SizeMode = PictureBoxSizeMode.Zoom
PictureBox2.SizeMode = PictureBoxSizeMode.Zoom
PictureBox2.Image = a(0, 0)

End Sub
End Class
展开
 我来答
szqaly
2015-08-30 · TA获得超过1745个赞
知道大有可为答主
回答量:2107
采纳率:77%
帮助的人:1550万
展开全部
ret(i, j) = input.Clone(New Rectangle(w * i, h * j, w,h), maging.PixelFormat.DontCare)
宽度高度需要再 * (i + 1)了,可能vb.net裁剪范围超出了图片范围会出错的吧,倒不是真的内存不足了。
追问
我改了以后为什么还是显示“内存不足”?
追答
奇怪了,换张图片试试看,我这里没问题。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式