Amended Firemonkey Android Text italic bold display is not the whole problem

Source: Internet
Author: User

Problem: Firemonkey Android Platform Display italic bold text, the right of the text will be displayed incomplete problem.

Fix code:

Please place FMX. FontGlyphs.Android.pas Copy to your project directory, and then modify the following code:

functiontandroidfontglyphmanager.dogetglyph ... A little ...ifBounds.left <0  ThenWidth:= Width-Bounds.left;{+++>}      //Add correction code: Text oblique bold display by Aone 2017.05.26      ifFPaint.getTypeface.isItalic Then      beginWidth:= Round (width + width *0.125); ifFPaint.getTypeface.isBold ThenWidth:= Round (width + width *0.1); End;{<+++}Bitmap:= TJBitmap.JavaClass.createBitmap (Width, Height, TJBitmap_Config.JavaClass.ARGB_8888);... A little ...End;

Correction Effect:

Not fixed After correction

Amended Firemonkey Android Text italic bold display is not the whole problem

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.