- Code: Select all
VpeSetTextColor(hDoc, XRGB(230,230,230))
VpeSetFontName(hDoc, "Bradley Hand ITC")
VpeSetFontSize(hDoc, 100)
VpePrint(hDoc,500,500,"COPY")
VpeSetPictureType(hDoc,PIC_TYPE_WMF)
VpePictureExport(hDoc,"c:\Copy_WM.wmf",1,550,520,1350,840)
This creates the file (copy_wm.wmf) with no problem. However when I use the graphic in a new document as follows:
- Code: Select all
VpePicture(hDoc, 200, 1100, VFREE, VFREE, "c:\copy_wm.wmf")
The graphic is added and the preview looks fine, but the image does not print! If I add .JPG, .BMP, or .TIF images they print just fine.
Any ideas on what I am doing wrong??
Terry Wolfe