Home » U++ Library support » Draw, Display, Images, Bitmaps, Icons » Strange issue with text in Painter
Re: Strange issue with text in Painter [message #50912 is a reply to message #50911] |
Mon, 14 January 2019 11:11 |
|
mirek
Messages: 14019 Registered: November 2005
|
Ultimate Member |
|
|
Oh, sorry about the part about "commenting out" - that would not work (because we are using it for the desired rendering as well).
What we need to do is to copy it and THEN start removing...
double fx_to_dbl(const FIXED& p);
Pointf fx_to_dbl(const Pointf& pp, const POINTFX& p);
struct sMakeGlyph : LRUCache<Value, GlyphKey>::Maker {
GlyphKey gk;
GlyphKey Key() const { return gk; }
int Make(Value& v) const {
GlyphPainter gp;
gp.move = gp.pos = Null;
gp.tolerance = gk.tolerance;
PaintCharacter(gp, Pointf(0, 0), gk.chr, gk.fnt);
int sz = gp.glyph.GetCount() * 4;
v = RawPickToValue(pick(gp.glyph));
return sz;
}
};
void RenderCharPath2(const char* gbuf, unsigned total_size, FontGlyphConsumer& sw, double xx, double yy)
{
const char* cur_glyph = gbuf;
const char* end_glyph = gbuf + total_size;
Pointf pp(xx, yy);
while(cur_glyph < end_glyph) {
const TTPOLYGONHEADER* th = (TTPOLYGONHEADER*)cur_glyph;
const char* end_poly = cur_glyph + th->cb;
const char* cur_poly = cur_glyph + sizeof(TTPOLYGONHEADER);
sw.Move(fx_to_dbl(pp, th->pfxStart));
while(cur_poly < end_poly) {
const TTPOLYCURVE* pc = (const TTPOLYCURVE*)cur_poly;
if (pc->wType == TT_PRIM_LINE)
for(int i = 0; i < pc->cpfx; i++)
sw.Line(fx_to_dbl(pp, pc->apfx[i]));
if (pc->wType == TT_PRIM_QSPLINE)
for(int u = 0; u < pc->cpfx - 1; u++) {
Pointf b = fx_to_dbl(pp, pc->apfx[u]);
Pointf c = fx_to_dbl(pp, pc->apfx[u + 1]);
if (u < pc->cpfx - 2)
c = Mid(b, c);
sw.Quadratic(b, c);
}
cur_poly += sizeof(WORD) * 2 + sizeof(POINTFX) * pc->cpfx;
}
sw.Close();
cur_glyph += th->cb;
}
}
HFONT GetWin32Font(Font fnt, int angle);
HDC Win32_IC();
void RenderCharacterSys2(FontGlyphConsumer& sw, double x, double y, int ch, Font fnt)
{
HFONT hfont = GetWin32Font(fnt, 0);
if(hfont) {
HDC hdc = Win32_IC();
HFONT ohfont = (HFONT) ::SelectObject(hdc, hfont);
GLYPHMETRICS gm;
MAT2 m_matrix;
memset(&m_matrix, 0, sizeof(m_matrix));
m_matrix.eM11.value = 1;
m_matrix.eM22.value = 1;
int gsz = GetGlyphOutlineW(hdc, ch, GGO_NATIVE, &gm, 0, NULL, &m_matrix);
if(gsz < 0)
return;
StringBuffer gb(gsz);
gsz = GetGlyphOutlineW(hdc, ch, GGO_NATIVE, &gm, gsz, ~gb, &m_matrix);
if(gsz < 0)
return;
RenderCharPath2(~gb, gsz, sw, x, y + fnt.GetAscent());
::SelectObject(hdc, ohfont);
}
}
void ApproximateChar(LinearPathConsumer& t, Pointf at, int ch, Font fnt, double tolerance)
{
PAINTER_TIMING("ApproximateChar");
Value v;
INTERLOCKED {
PAINTER_TIMING("ApproximateChar::Fetch");
static LRUCache<Value, GlyphKey> cache;
cache.Shrink(500000);
sMakeGlyph h;
h.gk.fnt = fnt;
h.gk.chr = ch;
h.gk.tolerance = tolerance;
v = cache.Get(h);
#ifdef _DEBUG
DLOG("==== ApproximateChar " << ch << " " << (char)ch << " " << fnt << ", tolerance: " << tolerance);
DDUMP(ValueTo< Vector<float> >(v));
GlyphPainter chp;
chp.move = chp.pos = Null;
chp.tolerance = tolerance;
struct PaintCharPath : FontGlyphConsumer {
Painter *sw;
virtual void Move(Pointf p) {
sw->Move(p);
}
virtual void Line(Pointf p) {
sw->Line(p);
}
virtual void Quadratic(Pointf p1, Pointf p2) {
sw->Quadratic(p1, p2);
}
virtual void Cubic(Pointf p1, Pointf p2, Pointf p3) {
sw->Cubic(p1, p2, p3);
}
virtual void Close() {
sw->Close();
}
} pw;
pw.sw = &chp;
RenderCharacterSys2(pw, 0, 0, ch, fnt);
// fnt.Render(pw, 0, 0, ch);
// PaintCharacter(chp, Pointf(0, 0), ch, fnt);
// DDUMP(chp.glyph);
// ASSERT(ValueTo< Vector<float> >(v) == chp.glyph);
#endif
}
const Vector<float>& g = ValueTo< Vector<float> >(v);
int i = 0;
while(i < g.GetCount()) {
Pointf p;
p.x = g[i++];
if(p.x > 1e30) {
p.x = g[i++];
p.y = g[i++];
t.Move(p + at);
}
else {
PAINTER_TIMING("ApproximateChar::Line");
p.y = g[i++];
t.Line(p + at);
}
}
}
It this still 'toggles', start commenting from RenderCharPath2 call up...
[Updated on: Mon, 14 January 2019 11:12] Report message to a moderator
|
|
|
|
|
Strange issue with text in Painter
By: Tom1 on Wed, 09 January 2019 11:23
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 09 January 2019 13:38
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 10 January 2019 17:09
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 10 January 2019 17:26
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 10 January 2019 17:46
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 09:40
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 10:07
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 10:10
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 10:17
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 11:05
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 11:46
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 12:10
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 12:12
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 12:33
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 12:53
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 14:33
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 15:29
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 15:33
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 15:43
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Fri, 11 January 2019 18:50
|
|
|
Re: Strange issue with text in Painter
By: mirek on Sat, 12 January 2019 13:14
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Sat, 12 January 2019 14:57
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 09:58
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 10:13
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 10:18
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 10:26
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 10:28
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 10:42
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 10:47
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 11:01
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 11:07
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 11:11
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 11:30
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 11:32
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 11:41
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 11:57
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 12:03
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 12:14
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 12:16
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 12:22
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 13:26
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 12:21
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 12:30
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 12:41
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 13:23
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 13:53
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 14:11
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 15:03
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 15:18
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 15:34
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 15:38
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 16:08
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 17:21
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 17:45
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 18:31
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 18:39
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 19:53
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 20:51
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 20:56
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 08:42
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:11
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:17
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 08:53
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:15
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:30
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 11:49
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 11:52
|
|
|
Re: Strange issue with text in Painter
By: mirek on Mon, 14 January 2019 11:56
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Mon, 14 January 2019 10:39
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 15:47
|
|
|
Re: Strange issue with text in Painter
By: mirek on Fri, 11 January 2019 19:26
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:21
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:23
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:34
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:38
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:51
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 09:53
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:53
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 10:06
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 09:42
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 10:07
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 10:19
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 13:28
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 14:56
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 16:20
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 16:37
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 08:54
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 09:18
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 09:37
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 09:39
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 10:45
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 10:52
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 11:11
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 11:35
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 11:39
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 11:46
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 12:00
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 12:07
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 12:16
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 12:47
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 13:09
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 13:20
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 13:26
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 14:27
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 14:47
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 15:14
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 15:16
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 15:22
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 15:40
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 16:26
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 17:18
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 17:18
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 08:44
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 09:10
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 09:15
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 09:42
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 10:04
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 10:07
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 10:14
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 10:16
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 10:19
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 10:42
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 10:51
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 10:54
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 11:10
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 11:07
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 11:28
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 11:32
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 11:36
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 11:43
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 11:46
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:09
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 12:28
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:34
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:44
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:47
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:52
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 12:56
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:59
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 13:01
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 13:04
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 13:12
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 13:34
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 13:40
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 13:58
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 14:12
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 14:16
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 14:24
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 14:47
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 14:51
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 14:52
|
|
|
Re: Strange issue with text in Painter
By: koldo on Sat, 19 January 2019 17:46
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 14:30
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 14:33
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 14:51
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 11:54
|
|
|
Re: Strange issue with text in Painter
By: mirek on Thu, 17 January 2019 12:17
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 12:21
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 10:21
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 10:19
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Thu, 17 January 2019 09:51
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 10:53
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 11:31
|
|
|
Re: Strange issue with text in Painter
By: mirek on Wed, 16 January 2019 09:21
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Wed, 16 January 2019 09:40
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 10:21
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 11:13
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 11:20
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 11:23
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 11:27
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 11:45
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 11:45
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 11:51
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 11:54
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 12:27
|
|
|
Re: Strange issue with text in Painter
By: mirek on Tue, 15 January 2019 14:55
|
|
|
Re: Strange issue with text in Painter
By: Tom1 on Tue, 15 January 2019 11:43
|
Goto Forum:
Current Time: Fri Sep 13 02:40:35 CEST 2024
Total time taken to generate the page: 0.03433 seconds
|