Hi,
I have some problem when i try to decode this kind of thinks :
[(\007\003\b\007\006)-275(\004\002\005\003\007)]TJ
(\000)Tj
(\024\020\004\b\000\017\032\035\030\034\000\025\021\001\033\036\027\r\024\020\004\b\000\01 7\032\035\030\034\000\025\021\001\033\036\027\000\000\004\b\002\f\002\003\t\000\000\004\b\ r\b\t\000\000\023\026\031\030\000\004)Tj
[(VOLUME)-600(TWO)-1801(ISSUE)-600(THREE)]TJ
For the last one : [(VOLUME)-600(TWO)-1801(ISSUE)-600(THREE)]TJ
the text is under ( ) and -600 -1801 -600 is space between each word (according to "PDF Reference" ).
For this other i have 2 questions in one case i have an array [] an on the other not...
String seems to be an escape sequence (according to "PDF Reference" ) :
\n | Line feed (LF) | |
\r | Carriage return (CR) | |
\t | Horizontal tab (HT) | |
\b | Backspace (BS) | |
\f | Form feed (FF) | |
\( | Left parenthesis | |
\) | Right parenthesis | |
\\ | Backslash | |
\ddd | Character code ddd (octal) |
My problem is how convert \007\003\b\007\006 to "first word" \b "second word) ?
007 is supose to be a Character code in octal ?!
How convert it ACII or unicode ?
Thanks,
WCoder