Hi. I am writing an applet that interfaces with signature capture tablet. The API that comes with the signature pad can create a BufferedImage object of the signature. cool.
The second part is printing the signature from an Epson thermal receipt printer. In order to do this, you must send commands to the printer defining the height and width of the image, so on and so forth. When you are ready to send the data to the printer, you must send it in a hexidecimal format.
I created a Raster object from my signature, and from that, created a DataBufferByte object (The final step is to write each byte as hex to the printer). Just out of curiosity, I decided to look at the bytes returned from myDataBufferByte.getData(), and some of the values are negative numbers. I have declared the data type to be TYPE_BYTE, which should be unsigned.
Are there any reasons why this is happening or am I not understanding something correctly? thanks
More Info The printer can only print bitmaps (lower case b, not Bitmap from MS). If the image is X pixels by Y pixels, the size of the bitmap can be found as follows:
size = X * Y * n / 8
where n = bitdepth. Because This is a signature that is going to be printed from a thermal receipt printer, I only need a bit depth of 1 (black or white - the bit is either on or off). When there is a bitdepth of one, this means that 1 bit translates to exactly one pixel in the image. So the first byte in the array as hex is say.. 6F, this is equal to 01101111 in binary, and is reflected in the first 8 pixels.
Also, java is not my main language, I was unaware of them being signed especially when the Databuffer javadoc (as linked above) states the TYPE_BYTE as :
Tag for unsigned byte data.
and mydatabuffer.getDataType() returns 0 (0 == TYPE_BYTE constant)
