posted 18 years ago
the only thing i can offer on this topic is this tidbit: regardless of
what points/coordinates you want to draw, the image will be rendered onto a graphics device - typically the default screen device, but otherwise a device you specify (eg. a printer device w certain resolution)
if the rendered image lacks the resolution you desire, you do have to perform the image transformation yourself to fix it. for example, the same image renders differently to a screen device than a printer device because the underlying device resolution differs.
On second part of your question, the default AffineTransform is supposed to be the identity transform, which - by definition - won't alter your image... You can try:
to double-check this
hth
[ August 17, 2004: Message edited by: clio katz ]