in my application I printout some data from a database on a printer. Additionally there are 2 images which should also be printed.
When I run the exe file, evererything is printed except the images. When I start the program from the IDE, all inclusive the images is printed.
Code: Select all
UseTIFFImageDecoder()
LoadImage(#Image_0, "XXX.tif")
LoadImage(#Image_1, "YYY.tif")
.
ResizeImage(#Image_0, 120, 280)
ResizeImage(#Image_1, 200, 200)
.
DrawImage(ImageID(#Image_0), x0, y0)
DrawImage(ImageID(#Image_1), x1, y1)
Regards