如何使用Width & Height (360x480)
像素保存图像。
到目前为止,此代码帮助我转换PictureBox
中的图像以将其保存在数据库中。
Dim ms As New MemoryStream()
picImage.Image.Save(ms, ImageFormat.Png)
Dim pic_arr As Byte() = New Byte(ms.Length - 1) {}
ms.Position = 0
ms.Read(pic_arr, 0, pic_arr.Length)
如何添加可以设置图像宽度和宽度的功能?高度吗
答案 0 :(得分:0)
Image
对象具有Height
和Width
属性。这些只是数字,所以你可以将它们保存到数据库中,就像你使用其他任何数字一样。