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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f3ddb11354073cbf X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!news4.google.com!news.glorb.com!news2.arglkargh.de!news.karotte.org!uucp.gnuu.de!newsfeed.arcor.de!news.arcor.de!not-for-mail Newsgroups: comp.lang.ada Subject: Re: convert XML to PDF in my ada application From: Georg Bauhaus In-Reply-To: <1146832811.204969.157870@g10g2000cwb.googlegroups.com> References: <1146832811.204969.157870@g10g2000cwb.googlegroups.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: # Message-ID: <1146853983.9076.12.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.4.1 Date: Fri, 05 May 2006 20:33:03 +0200 NNTP-Posting-Date: 05 May 2006 20:32:23 MEST NNTP-Posting-Host: cf0c99fd.newsread2.arcor-online.net X-Trace: DXC=N_JSa23a13fEFMTLjj\fooQ5U85hF6f;djW\KbG]kaMh[NGU2GAcMGj2DaMQB7GmPb=0F65HQV8if8f^VB<\EVdm X-Complaints-To: usenet-abuse@arcor.de Xref: g2news2.google.com comp.lang.ada:4100 Date: 2006-05-05T20:32:23+02:00 List-Id: On Fri, 2006-05-05 at 05:40 -0700, evangeli@cnam.fr wrote: > hello ! > i am writing an ada application which can generate some outputs in an > xml format. > i would also like to generate a pdf file of this output. > is this possible? You could write or reuse one or more XSL style sheets/transformations. XML --+ \--> FO --> PDF / XSL --+ This setup can represent one program, or a connection by by pipes, collaborating processes, etc. FO means Flow Objects. There are a number processors taking FOs to PDF, including Apache Fop, RenderX XEP, and Antenna House XSL Formatter. Another option is to use a text processor like FrameMaker, OpenOffice Write, Ventura, etc., and feed them the XML data, after teaching them how to render this kind of XML data. HTH, Georg