方法有两种
1)在网页加载这个图片呀
2)保存到数据库中呀,就是二进制数
[解决办法]
{*
MakeHtml('test.jpg', 'test.html');
@param imgsrc 图片路径
@param savefile 生成的html文件名
@return 保存成功返回true
}
function MakeHtml(const imgsrc,savefile: string): Boolean;
var
f: TStringList;
begin
Result := True;
f := TStringList.Create;
try
f.Add('');
try
f.SaveToFile(savefile);
except
Result := False;
end;
finally
f.Free;
end;
end;