如何打印bmp文件 ( 积分: 100 )

  • 主题发起人 主题发起人 wyf_aaa
  • 开始时间 开始时间
W

wyf_aaa

Unregistered / Unconfirmed
GUEST, unregistred user!
在Form1中加入Imag1,printDialog1和Button1。
加入下面代码为什么图片打印不出来?在Form1中可以显示图片
procedure TForm1.Button1Click(Sender: TObject);
begin
Image1.Picture.LoadFromFile('bar.bmp');
if PrintDialog1.Execute then
begin
with Printerdo
begin
begin
Doc;
Canvas.Draw(300,200,Image1.Picture.Graphic);
EndDoc;
end;
end;
 
在Form1中加入Imag1,printDialog1和Button1。
加入下面代码为什么图片打印不出来?在Form1中可以显示图片
procedure TForm1.Button1Click(Sender: TObject);
begin
Image1.Picture.LoadFromFile('bar.bmp');
if PrintDialog1.Execute then
begin
with Printerdo
begin
begin
Doc;
Canvas.Draw(300,200,Image1.Picture.Graphic);
EndDoc;
end;
end;
 
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
with Image1.Picture.Bitmapdo
begin
Printer.begin
Doc;
Printer.Canvas.StretchDraw(Canvas.ClipRect, Image1.Picture.Bitmap);
Printer.EndDoc;
end;
end;
 
接受答案了.
 

Similar threads

I
回复
0
查看
1K
import
I
I
回复
0
查看
542
import
I
后退
顶部