From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6071f84396b8f5aa X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Received: by 10.68.33.161 with SMTP id s1mr249174pbi.2.1318892833614; Mon, 17 Oct 2011 16:07:13 -0700 (PDT) Path: d5ni23958pbc.0!nntp.google.com!news2.google.com!postnews.google.com!f11g2000vbm.googlegroups.com!not-for-mail From: Shark8 Newsgroups: comp.lang.ada Subject: Re: Writing PDF files Date: Mon, 17 Oct 2011 16:00:28 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: NNTP-Posting-Host: 24.230.151.194 Mime-Version: 1.0 X-Trace: posting.google.com 1318892833 6128 127.0.0.1 (17 Oct 2011 23:07:13 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 17 Oct 2011 23:07:13 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: f11g2000vbm.googlegroups.com; posting-host=24.230.151.194; posting-account=lJ3JNwoAAAAQfH3VV9vttJLkThaxtTfC User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HUALESNKRC X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 6.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1,gzip(gfe) Xref: news2.google.com comp.lang.ada:14015 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2011-10-17T16:00:28-07:00 List-Id: On Oct 17, 5:23=A0pm, Bill Findlay wrote: > Thanks to everyone who has offered help with this. > > KDF9 is a historic British computer from 50 years ago: > > =A0 =A0 > > I have written a KDF9 emulator in Ada 2005 that runs on MacOS X, Linux an= d > Windows, and am now hoping to complete the set of KDF9 I/O devices it > supports. =A0At option a Calcomp graph plotter could be fitted in place o= f a > tape punch. =A0It interpreted 6-bit commands that directed it to move one= step > left/right and/or back/forward, with the pen raised or lowered. =A0That's= it. > > All I need is the ability to create a line drawing specified by a series = of > such commands, so very basic vector drawing. =A0It would be good if users > could see the plot immediately on completion, just by opening the plot fi= le. > > PDF would seem to offer this convenience. =A0Thanks for the pointers to o= ther > formats that might do the job. =A0I'm not going to plunge into powerful > graphics frameworks, partly to preserve portability and ease of building, > and partly because life is too short; but some of the other suggestions > might meet my needs. =A0Time to put my thinking cap on! > > Thanks again. > > -- > Bill Findlay > with blueyonder.co.uk; > use =A0surname & forename; A possible "almost" solution would be to output PostScript program, as it is a text-file*, and pump that through Acrobat Distiller or equivalent. * There is a binary format; but even the official documentation presents it in a rather leery light.