sql,图像转换类型为varbinary

时间:2016-01-20 07:29:58

标签: sql image

伙计们如何转换图片?

我的计算机桌面上有'jpg'图片“我想要它的SQL'varbinary(MAX)'值” 怎么做 ?

请注意:图像在我的桌面上,我无法将其附加到SQL数据库

1 个答案:

答案 0 :(得分:0)

public byte[] ImageLoader(string ImageAddress)
    {
        StreamReader SR = new StreamReader(ImageAddress);
        return Encoding.Unicode.GetBytes(SR.ReadToEnd());
    }