Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


Hi,

This patch adjust & improve the "faux bold" in cairo canvas,
to make the bold in Asian style font better & acceptable.


From 72ad91b439d549b2199d7e6a081f3f64f5773fa2 Mon Sep 17 00:00:00 2001
From: Flex Liu <winddss@gmail.com>
Date: Fri, 19 Oct 2012 13:45:38 +0800
Subject: [PATCH] fdo#47432 Improve the "faux bold" in cairo canvas.

The "faux bold" make the bold font in Asian ugly & unacceptable,
Adjust & improve the "faux bold" to make the bold font better.
---
 canvas/source/cairo/cairo_textlayout.cxx |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/canvas/source/cairo/cairo_textlayout.cxx
b/canvas/source/cairo/cairo_textlayout.cxx
index 68143b5..29a2c26 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -604,12 +604,13 @@ namespace cairocanvas
             //faux bold
             if (rSysFontData.bFakeBold) {
                 double bold_dx = 0.5 * sqrt( 0.7 * aFont.GetHeight() );
-                int total_steps = 2 * ((int) (bold_dx + 0.5));
+                int total_steps = 1 * ((int) (bold_dx + 0.5));

                 // loop to draw the text for every half pixel of displacement
                 for (int nSteps = 0; nSteps < total_steps; nSteps++) {
                     for(int nGlyphIdx = 0; nGlyphIdx < (int)
cairo_glyphs.size(); nGlyphIdx++) {
-                        cairo_glyphs[nGlyphIdx].x += bold_dx * nSteps
/ total_steps;
+                        cairo_glyphs[nGlyphIdx].x += (bold_dx *
nSteps / total_steps) / 4;
+                        cairo_glyphs[nGlyphIdx].y -= (bold_dx *
nSteps / total_steps) / 4;
                     }
                     cairo_show_glyphs(pSCairo.get(),
&cairo_glyphs[0], cairo_glyphs.size());
                 }
-- 
1.7.7


Flex

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.