Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
2k views

Help with byte shifting

I need to byte-shift a text file. I know absolutely nothing about perl, but I found a perfectly working piece of code in perl called moz-byteshift.pl (documentation). This does exactly what I want ...
1
vote
3answers
529 views

Creating a ISO-8859-1 string from a HEX-string in Java, shifting bits

I am trying to convert a HEX-sequence to a String encoded in either, ISO-8859-1, UTF-8 or UTF-16BE. That is, I have a String looking like: "0422043504410442" this represents the characters: "Test" in ...
0
votes
3answers
551 views

Help with objective c - java byte shift

I am sending data between Java and iPhone/objC clients. The Java client has an established middleware component that I am using to test integration of the new client to the middleware. I have a ...
0
votes
6answers
862 views

convert 24bit RGB to ARGB16

i am reading a 24bpp bitmap , and i need to convert each pixel from RGB24 to ARGB16. i am using this : #define ARGB16(a, r, g, b) ( ((a) << 15) | (r)|((g)<<5)|((b)<<10)) but the ...