Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to write pdf format from cobol? 1

Status
Not open for further replies.

IMJJ2

IS-IT--Management
Jul 1, 2004
2
US
Does anyone know if there is a way to write a pdf file directly from a cobol program?
 
With the PDFwriter virtual printer ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
As you didn't mention what OS it is hard to give you options.

So.

Windows
Any PDF virtual printer
and
PDFLIB from Maybe others.

Unix
PDFLIB from
OS400
GZIP400 from Native AS/400 Report Converters and Native PCL to PDF Converter from

There are others, and other OS's.

All can be either called directly from COBOL, or you print to them, or print to a file and then call the convertion program.

Regards

Frederico Fonseca
SysSoft Integrated Ltd
 
Sorry this was my first time. The operating system is OpenVMS on an Alpha server. The language is DEC-COBOL using FMS for the screen design utility. I want to be able to write directly from COBOL to a PDF format. The second best would be to write to an HTML type format.

 
Probably your best bet is PDFlib ( from ) which is available for OpenVMS/Alpha. Instead of using WRITE statements, you would CALL various routines in the PDFlib utility. The concept of PDF is page layout, not printing lines, so you have to adjust your thinking somewhat. I have found, though, that converting a program that prints a report to one that produces the same report using PDFlib is straightforward. PDFlib does not claim to have bindings for DEC-COBOL, so you might have some 'auxiliary' work to do to use the C bindings from DEC-COBOL.

Tom Morrison
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top