关于Sybase镜像
sybase中图像数据类型是否转换为字节数组? 我应用网络服务来获取 sybase 中的数据集(图像数据类型)。 我使用 byte[] 来获取 Web 服务的返回。 然后我使用“response.binarywrite(byte[])”来显示图像。(ASP.NET C#) 但是存在图像失真问题(当我放大图像时,会丢失一些点)。 我不知道为什么 有谁知道sybase中的图像数据类型可以转换为字节数组吗?
系统:
1 Sybase
Sybase db: 11.9.2
Adaptive server enterprise 12.5.1
Sybase.Data.AseClient:1.0.152.0
2 ASP.NET C# (Visual Studio 2008)
3 IE6
Does image data type be converted to byte array in sybase?
I apply web service to get data set in sybase( image data type).
I use byte[] to get returning of web service.
Then i use the "response.binarywrite(byte[])" to show the image.(ASP.NET C#)
But there' s a image distortion problem (When i zoon in the image, some points are missed).
I don't know why
Does anyone know the image data type in sybase could be transfered to byte array?
System:
1 Sybase
Sybase db: 11.9.2
Adaptive server enterprise 12.5.1
Sybase.Data.AseClient:1.0.152.0
2 ASP.NET C# (Visual Studio 2008)
3 IE6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我找到了答案。
这个问题的原因是Sybase中访问图像大小的限制。当图像大小大于37k字节时,输出仍然是37K。因此,我在这一步中错过了一些字节。解决办法是需要设置参数来检索所有数据。
部分代码如下:
参数值取决于您的最大图像尺寸。
Finally, i find the anwser.
The reason of this problem is the limitation of accessing size of image in Sybase. When the size of image is higher than 37k byte, the output is still 37K. Therefore, i miss some byte in this step. The solution is that you need to set the parameter to retrieve all data.
The partial codes are showed as below:
The parameter value depends on your max size of images.