[Webkit-unassigned] [Bug 24262] [Qt] SVGs stroked text support missing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 12 22:55:06 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=24262


zecke at selfish.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #28119|review?                     |review+
               Flag|                            |




------- Comment #2 from zecke at selfish.org  2009-03-12 22:55 PDT -------
(From update of attachment 28119)

> -    p->drawText(pt, string, flags, run.padding());
> +
> +    if (ctx->textDrawingMode() & cTextStroke) {
> +        QPainterPath path;
> +        path.addText(pt, font(), string);
> +        p->strokePath(path, p->pen());
> +    }
> +    if (ctx->textDrawingMode() & cTextFill)
> +        p->drawText(pt, string, flags, run.padding());

cool, can you point me to a test case that is having cTextStroke and cTextFill
for drawing text?


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list