tags:

views:

37

answers:

1

I'm using java to print in thermal printer
the printer work fine
I print test paper and work fine print image and text

from my java application the image not appear
only text

int method

print(Graphics g, PageFormat pf, int pageIndex){
using g.drawImage();
}

but the image not appear in the paper

please help

A: 

This code does not appear to make any sense.

using g.drawImage(); is not valid Java, and the method doesn't contain any more code. Could you post up the full method so we can understand the problem?

Thanks

will