1.圖片如何轉(zhuǎn)換成代碼
使用數(shù)據(jù)流的形式輸出圖片;
參考實(shí)例如下:
{*
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('<IMG SRC="' + imgsrc + '" />');
try
f.SaveToFile(savefile);
except
Result := False;
end;
finally
f.Free;
end;