Michael,

Here is a snippet of code that I use to create a PDF from JPGs.  Of course,
you will need to change the variables to match your application.

 

SET VAR vpdf_file TEXT = +
('C:\Documents and Settings\'+.vwin_user+'\My Documents\'+.vfml)
  PRINT patient_pic +
  WHERE cust# = .vcu_no AND PIC_FLAG = 'T' +
  OPTION PDF +
  |FILENAME .vPDF_FILE +
  |TITLE PATIENT PHOTOS +
  |SUBJECT .vFML +
  |AUTHORIZATION .vCO_ADD_LINE1 +
  |USE_COMPRESSION ON +
  |COMPRESSION_METHOD MAXCOMPRESS +
  |INCLUDE_IMAGES ON +
  |IMAGE_FORMAT JPG +
  |PIXELFORMAT 32 +
  |JPEG_QUALITY 100 +
  |IMAGE_DPI -1 +
  |OPEN ON
RETURN

 

John

 

From: [email protected] [mailto:[email protected]] On Behalf Of Michael J.
Sinclair
Sent: Friday, December 18, 2009 10:00 AM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Converting JPGs to PDF in Rbase

 

Is there any way, from within Rbase to convert a group of JPGs into a single
PDF file?

Mike

Reply via email to