使用宽度和宽度保存Blob图像高度VB.Net,MySQL

时间:2016-08-02 04:31:21

标签: mysql vb.net

如何使用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)

如何添加可以设置图像宽度和宽度的功能?高度吗

1 个答案:

答案 0 :(得分:0)

Image对象具有HeightWidth属性。这些只是数字,所以你可以将它们保存到数据库中,就像你使用其他任何数字一样。