Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site uw-beaver Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!mtuxo!mtunh!mtung!mtunf!ariel!vax135!cornell!uw-beaver!laser-lovers From: laser-lovers@uw-beaver Newsgroups: fa.laser-lovers Subject: Re: PostScript hackery (again) Message-ID: <1432@uw-beaver> Date: Wed, 24-Jul-85 22:05:17 EDT Article-I.D.: uw-beave.1432 Posted: Wed Jul 24 22:05:17 1985 Date-Received: Fri, 26-Jul-85 20:02:22 EDT Sender: daemon@uw-beaver Organization: U of Washington Computer Science Lines: 26 From: Neal Holtz Re: flaw calling imagemask At least 2 flaws: 1. imagemask does not deposit image at current point, so your first line should read '100 100 translate'; 2. It scans your image into a 1 unit square, so you should have a line to scale it, something like: 368 300 div 72 mul 384 300 div 72 mul scale to draw it pixel for pixel; What you got was 1 pt by 1 pt image at (0,0) which is off the imageable area. Re: your earlier question regarding images: I too would like to know if one can persuade PostScript to leave images alone. That seems like a fair bit of work, scan-converting all those little rectangles onto the page image (in your case 368*384=141312 of them). Even though the LaserWriter, for one, is amazingly fast at doing all that work, it would be nice to tell it not to do the work at all.