Adrian Schlatter

Results 16 issues of Adrian Schlatter

Encoding the messages 'aa9' and 'aa`' to TEXT gives identical results for both which can't be correct. ``` toText('aa`', [ /* TEXT */ 239, 31, 0, 0, 32, 9, 29,...

I'm a big fan of datamatrix-svg, which is why I have been looking at it closely. And I believe I have found an issue with X12-encoding. Encoding messages including '>'...

Apparently, toEdifact(msg) encodes the last character in msg as "ASCII" even if it is a valid EDIFACT character. **Example** toEdifact('ABCD') => [240, 4, 32, 223, 69] * 240: "Start EDIFACT...

Structure is rather unsystematic currently.

currently missing while datamatrix-svg has it.

Trying to encode a character which is not supported by a codec will raise an exception (=> good). However, the error message is a bit misleading in some cases. Example:...