如何将数据库中的图像保存为tiff文件?

时间:2015-07-07 19:27:35

标签: sql image save tiff

我正在尝试从数据库中检索图像并将其另存为tiff文件。数据库图像的初始图像格式是tiff。

Dim imgInBytes() As Byte = CType(sqlReader.GetValue(11), Byte())
Dim ms As MemoryStream = New MemoryStream(imgInBytes)
img = Image.FromStream(ms, True)
img.Save(path & "\" & fn)
ms.Close()
img.Dispose()

使用上述代码,我已经能够生成一个文件。问题是,无法查看图像。我收到以下消息:

  

Windows照片查看器无法打开此图片,因为图片是   正在另一个程序中编辑。

如何将数据库中的图像保存为tiff文件?我需要对代码进行哪些更改?

0 个答案:

没有答案