Print multiple images onto a single PDF page

  • I would like to print multiple images onto a single PDF page.
    For example, I have a form with two Timage controls, each with a different image. I want to print both images onto the same PDF page

    I had a look at Section E of the tips in the manual, which looked like it may do as I wanted, as it had a Startpage flag. My initial understanding was that if Startpage was set to false, images would be placed onto the same page. However, in the end I could not work out the reason for the Startpage flag at all.

    What I wanted to do was something like this
    wPDFprinter1.Begindoc
    wPDFExportasBitmap(image1.picture.metafile, wpdfprinter1,true);
    wPDFExportasBitmap(image1.picture.metafile, wpdfprinter1,False);
    wPDFprinter1.EndDoc

    Thanks for you help
    Colin Smith