Tagged Questions
The uniscribe tag has no wiki summary.
4
votes
1answer
438 views
Uniscribe Kerning
At work, I have been tasked with improving the text rendering of our application to better support text character kerning. Our application generates images that appear on Television, so image quality ...
2
votes
2answers
109 views
complex text layout of Indic scripts
I am using unicode truetype fonts for telugu.I want to input a sequence of unicode characters in the range specified for telugu and use java functions to display the corresponding letters.Which part ...
1
vote
2answers
141 views
Converting LTR to RTL?
As you know many ui components and dev tools doesn't support rtl , we can call it flipping text , cause result is same example :
LTR
سلام salam متن راهنما word
RTL
word متن راهنما salam سلام
...
1
vote
1answer
53 views
How to adjust the width of a font using the Uniscribe API
Please bear with me, I am new to Uniscribe so I hope this isn't a dumb question but I have been unable to find the solution anywhere else. So, here goes...
I am trying to use the Uniscribe API to ...
1
vote
1answer
101 views
Why doesn't FONTSIGNATURE reflect lfCharSet?
I'm enumerating Windows fonts like this:
LOGFONTW lf = {0};
lf.lfCharSet = DEFAULT_CHARSET;
lf.lfFaceName[0] = L'\0';
lf.lfPitchAndFamily = 0;
::EnumFontFamiliesEx(hdc, &lf,
...
1
vote
1answer
113 views
What exactly happens when Complex Script Support is enabled?
When we click the check box "Install files for complex script and right to left languages (including Thai)" in Regional and Language settings what exactly happens?
Changes to registry keys?
I ...
0
votes
0answers
18 views
Using uniscribe for rendering SVG font
I am trying to render complex scripts on windows using SVG fonts. I was told that uniscribe is a very powerful API for rendering complex scripts. I am posting a question here just to reconfirm my ...
0
votes
1answer
185 views
Using ScriptGetProperties with Delphi
How can I use ScriptGetProperties API from Uniscribe Dll (usp10.dll) in Delphi
I found an example in C++, but I don't know how to translate it, because I'm not good on C.
const SCRIPT_PROPERTIES ...