Re: Printing - Printer.Canvas.CopyRect failed


2003-07-11 09:37:48 PM
delphi119
Sören Gessele writes:
Quote
Printer.Canvas.CopyRect(...)

What iam doing wrong?
Printer canvases are rarely (if ever) readable. The canvas is a write-only
abstraction. Behind the scenes, the printer graphic information is being
stored as a series of commands (more closely resembling a metafile than a
bitmap).
Notice that you will not be able to read from Printer.Canvas.Pixels[]
either.
-Gary