lhx0203 发表于 2008-12-30 17:09

如何从SQL Server中取出图像数据

....
cursorA = exec(connA,'select Image from t_image');
cursorA = fetch(cursorA,1);
photo   = cursorA.data{1};
......
parsebinary(photo, 'BMP');出错:??? Error using ==> imread at 328
Unable to determine the file format.Error in ==> parsebinary at 74
    = imread(['testfile.' lower(f)]);photo中已有数据,大小为<69558x1 int8>可以写入硬盘,保存数据,但却无法打开,显示未知文件格式.用VC读取SQL 中的图像数据可以正常显示图像...

lhx0203 发表于 2008-12-30 19:55

自己解决了,改了下MATLAB自带的parsebinary,如下   switch lower(f)
   
    case 'bmp'
      m=1;
%       m = 79;

将m = 79改为 m=1
页: [1]
查看完整版本: 如何从SQL Server中取出图像数据