Search found 3 matches

by i.patalas
Tue May 21, 2013 10:37 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: ECI in DataMatrix
Replies: 4
Views: 11965

Re: ECI in DataMatrix

Thank you very much! It's exactly what I was looking for.
by i.patalas
Fri May 17, 2013 3:25 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: ECI in DataMatrix
Replies: 4
Views: 11965

Re: ECI in DataMatrix

Hello, Do you mean something like this? var items = new List<ValueItemBase>(); items.Add(NonDataFlags.CreateECICharacter(4)); items.Add(new BinaryValueItem(iso88592.GetBytes("ążśźęćń󳥯ŚŹĘĆŃÓŁ"))); items.Add(NonDataFlags.CreateECICharacter(7)); items.Add(new BinaryValueItem(iso88595.GetBy...
by i.patalas
Wed May 15, 2013 11:28 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: ECI in DataMatrix
Replies: 4
Views: 11965

ECI in DataMatrix

Hello, I'm currently evaluating your component and I have something I can't do. I need a way to properly encode extended characters from different encodings (not only default iso-8859-1). Basing on one of the posts here I was able to do that with Base256 encoding and proper ECI codes. However accord...