#27357

Ok, here are more details:
It is a Java application. JDK 1.4.

The process is writing the HTML in a path, then the HTML is read from the path to write the PDF in the same path. Ex:

File fz = new File(path+filename); //HTML to read
java.io.FileInputStream fis = new java.io.FileInputStream(fz);
InputStreamReader isr = new InputStreamReader( fis );

The images are being rendered correctly in most cases, but for example when I mix different kind of images (jpg, png, gif) in the HTML to export, then the last kind of image fails, when the ssame image in the same path can be rendered when it is the only image.
Here is the output of pd4ml on debug mode:

version: PD4ML 350 Pro (eval)
not yet in cache: file:C:\Fonts/pd4fonts.properties
‘serif’ is not in pd4fonts.properties file
reject TTF lookup for: ‘serif’
not yet in cache: file:C:\Fonts/times.ttf
read ‘times new roman’ from file:C:\Fonts/times.ttf
‘serif bold’ is not in pd4fonts.properties file
reject TTF lookup for: ‘serif bold’
not yet in cache: file:C:\Fonts/timesbd.ttf
read ‘times new roman bold’ from file:C:\Fonts/timesbd.ttf
not yet in cache: file:C:\Fonts/verdana.ttf
read ‘verdana’ from file:C:\Fonts/verdana.ttf
image not yet in cache: image not yet in cache: http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24603dp254.jpg
not yet in cache: http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24603dp254.jpg
image size: 116658
image not yet in cache: http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24604Control Panel Exhibit_1246900352801.gif
not yet in cache: http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24604Control Panel Exhibit_1246900352801.gif
resource http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24604Control Panel Exhibit_1246900352801.gif not found.
image http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24604Control Panel Exhibit_1246900352801.gif not found.
can not load image: http://xxx.xxx.x.xxx/mgr/attach/mmfiles/HT24604Control Panel Exhibit_1246900352801.gif
not yet in cache: file:C:\Fonts/cour.ttf
read ‘courier new’ from file:C:\Fonts/cour.ttf
done in 1817ms.

On the last lines there is a message that an image can not be loaded. But I copy that URL to the browser and the image can be reached with out problem.

If you need some more information please let me know. Thanks for the help.