Hey, Guys. I’m working on a dial that represents time in the form of Chinese characters, but I’m having some problems. The composition of numbers in Chinese characters is not quite the same as Arabic numerals. For example, 21 is “二十一” in Chinese characters, which is equivalent to 20(二十) plus 1(一). But in the program, it omits the 10, and because of the difference in the number formation, it ends up being “二一”. I use date tag. What should I do, I used bitmap mode and uploaded a png image of 0-9, now I want to add ten in the middle of the wrong representation of the number“十”
1 Like
Welcome @zm3133389498 When you make the bitmapped font in WFS after 0 you can add CUSTOM characters starting at 10 going up to 24 or 12 .
In this case I was using the Bit Mapping for 28 moon phases .
.
To fix this, you can include ‘十’ as a custom character in your bitmap font setup and map it properly for numbers like 21 (‘二十一’). This way, the program will display the correct format.
1 Like