1
117924
Unregistered / Unconfirmed
GUEST, unregistred user!
我有一张JPG图片存入ORACLE数据库
JPG图片300K时只存入了一半,显示时上半图像有、下半图像没有。
JPG图片20K时可完全存入。
BDE 设置 BLOB SIZE 512 BLOB TO CACHE 512
方法1: TBlobField(FieldByName('cszp')).LoadFromFile('theimagefile.jpg');
方法2:BlobStream:=TBlobStream.Create(TBlobField(FieldByName('cszp')),bmWrite);
BlobStream.Position:=0;
JPEG1.SaveToStream(BlobStream);
JPG图片300K时只存入了一半,显示时上半图像有、下半图像没有。
JPG图片20K时可完全存入。
BDE 设置 BLOB SIZE 512 BLOB TO CACHE 512
方法1: TBlobField(FieldByName('cszp')).LoadFromFile('theimagefile.jpg');
方法2:BlobStream:=TBlobStream.Create(TBlobField(FieldByName('cszp')),bmWrite);
BlobStream.Position:=0;
JPEG1.SaveToStream(BlobStream);