关于图形打印,难道是我弄错了???polygon不支持brush.style??? (50分)

Z

zrj

Unregistered / Unconfirmed
GUEST, unregistred user!
难道是我弄错了???
我的打印机不支持:brush.style:=除了bsClear得值,???奇怪了阿!!
设置brush.style:=bssolid ,brush.color:=clred;
打印根本不管用,难道矢量图打印要换方案不成?!!各位的打印机呢??

printer.BeginDoc;

with printer.Canvas do
begin
brush.Style:=TBrushStyle(2);
brush.Color:=clred;
Polygon([Point(10, 10), Point(30, 10),Point(130, 30), Point(240, 120)]);
end;
printer.EndDoc;

各位能给我一个能画polygon的带brush的例子嘛?? 在打印机上测试通过的!!谢谢!

 
有些打印机是不支持brush,
也就是说只有brush.style:=bsClear;才会打印,这点好象在帮助中就有说明
 
接受答案了.
 
顶部