• Hi,

    I want to display a background image behind my "normal content page" !
    I tried this:

    cexp.BeginDoc( filename ,0)
    cexp.StartPageEx( pageDx, pageDy, 0 );

    // draw the background image
    cexp.DrawBMP( 0, 0, info.PDFWidth, info.PDFHeight, lhBmp );

    // draw the content page
    cexp.DrawMetafile( metaFileHandle, 0,0 , Width, height);

    cexp.EndPage();
    cexp.EndDoc();

    The Thumb of the page in acrobat reader look OK ,
    but the normal view just shows the Bitmap and not the metafile content.

    Thanks