vote up -1 vote down star

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)

flag

75% accept rate

3 Answers

vote up 3 vote down check

It's just in the interpretation, 255 unsigned == -1 signed. So anything over 127 will look negative in a signed int, but it's the same number to the prints/scanner.

link|flag
Thanks. This is a very interesting project I am working on, I havent really ever dealt with data in terms of bits before. – theman_on_vista Feb 26 at 15:44
vote up 0 vote down

Surely some conversion when printing (PrintStream prints int not byte). Don't forget that 0xff is -1. Can you show the code?

link|flag
vote up 0 vote down

byte is signed in Java.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.