W
wangfu
Unregistered / Unconfirmed
GUEST, unregistred user!
在SqL6.5中Image字段存入Gif图象,可是发现150K的图象能存,但是我自己作的
2K的图片就不能存入,提示‘Invalide Blob Length’。我不知道是不是,和图象
的尺寸有关系?请各位帮
var
C: TClipboard;
begin
C := TClipboard.Create;
try
if Clipboard.HasFormat(CF_PICTURE ) then
DBImage1.PasteFromClipboard
else
ShowMessage('剪贴板上没有试题!');
finally
C.Free;
end;
end;
end.帮我。
2K的图片就不能存入,提示‘Invalide Blob Length’。我不知道是不是,和图象
的尺寸有关系?请各位帮
var
C: TClipboard;
begin
C := TClipboard.Create;
try
if Clipboard.HasFormat(CF_PICTURE ) then
DBImage1.PasteFromClipboard
else
ShowMessage('剪贴板上没有试题!');
finally
C.Free;
end;
end;
end.帮我。