有谁知道QuickReport 的内容保存成图片的方法?(100分)

  • 主题发起人 主题发起人 yayiye
  • 开始时间 开始时间
Y

yayiye

Unregistered / Unconfirmed
GUEST, unregistred user!
有谁知道QuickReport 的内容保存成图片的方法?
QuickReport 中有qrTextFilter,qrCSVfilter等控件 所以可以保存为txt或者csv
等文件格式。
有没有类似qrGraphicFilter或者qrBMPFilter的控件?
还有可不可以提取Quickreport 窗体上的像素描图?
谢谢大家帮忙!
其实我觉得quickreport保存图片不如保存成txt或者excel或者html,但是
我没有办法说服我的leader.
 
试试这个
var
myMetaFail : TMetaFile;
begin
myMetaFail := TMetaFile.Create;
// Prepare the report to generate the images
QuickRep1.Prepare;
// Tell QRPrinter which page you want
QuickRep1.QRPrinter.PAgeNumber := 1;
// Assign the image from the QRPrinter object to your metafile
myMetaFail.Assign(QuickRep1.QRPrinter.Page);
// Save the metafile
myMetaFail.SaveToFile('f:/afax.emf');
end

 
呵呵,用printScreen那个按键不就可以捉取图片吗?^_^
 
接受答案了.
 
后退
顶部