blueman:
也可能我作的有什么问题,请看下面这段代码,在image上没有问题,但是到打印机上
就玩完了:该翻转但是没翻转。
with printer.canvasdo
begin
......
TheFont.Assign(Font);
GetObject(TheFont.Handle, SizeOf(LogFont), @LogFont);
LogFont.lfEscapement := 1800;
LogFont.lfOrientation := 1800;
TheFont.Handle := CreateFontIndirect(LogFont);
Font.Assign(TheFont);
textout(x1 + printer.canvas.textwidth('中国'),
y1 + printer.canvas.textheight('中国'), '中国');
.......
end;