xmlgraphics-batik icon indicating copy to clipboard operation
xmlgraphics-batik copied to clipboard

Fixing SVG to PNG Transcoding Error due to missing Arabic Characters …

Open ParitoshPC opened this issue 2 years ago • 3 comments

Upon checking the list of Arabic characters here the supported character according to ArabicTextHandler are from 0x622 to 0x652. The total number of characters between hex 0x622 to 0x652 according to the website there are 49 characters in total for which mapping should be present, but currently there are only 43 entries in doubleCharRemappings array in /batik/gvt/text/ArabicTextHandler.java file

These 6 characters are missing from the map

ت 1578 0000011000101010 62a 3052 ت
ث 1579 0000011000101011 62b 3053 ث
ج 1580 0000011000101100 62c 3054 ج
ح 1581 0000011000101101 62d 3055 ح
خ 1582 0000011000101110 62e 3056 خ
د 1583 0000011000101111 62f 3057 د

ParitoshPC avatar May 31 '23 10:05 ParitoshPC