How to increase/decrease inter-character spacing while drawing the string with System.Drawing in C#? In other words, I want to implement Font Kerning while printing labels.
I have tried winapi SetTextCharacterExtra
but It is not working at all. One other way I can think of is print each and every character separately and change width/x coordinate but It will not look pretty.
Any other idea guys?
Here is the way to implement intercharacter spacing:
Please go through this link for more details.