Does CGContextSetTextMatrix work for offscreen bit

2019-05-27 03:26发布

I'm creating an image offscreen using a context from CGBitmapContextCreate().

While drawing text, I tried to use the:

CGContextSetTextMatrix(contextRef, CGAffineTransformMake(1.0, 0.0, 0.0, -1.0, 0.0, 0.0));

but my text was still upside down. If I used the standard transforms it was correct:

CGContextTranslateCTM(contextRef, 0.0, contextRect.size.height);
CGContextScaleCTM(contextRef, 1.0, -1.0);

My question is should the CGContextSetTextMatrix work for an offscreen bitmap? Maybe I was doing something wrong.

2条回答
可以哭但决不认输i
2楼-- · 2019-05-27 03:31

No. The text matrix, as its name says, only affects text.

All drawing goes through the current transformation matrix, and only text also goes through the text matrix. So, for anything that isn't text, you need to change the CTM.

You can use the CGContextConcatCTM function to concatenate your flip matrix onto the CTM in one function call, although I would find the translate + scale easier to read. Note that concatenating one matrix onto another is not the same as replacing the old matrix with a new one.

There is no function to replace the CTM with a different matrix in Core Graphics; you can only concat onto it. You can get the CTM, invert it, and concat the inverse matrix onto the current matrix to get back to the identity matrix; then, concatenating your desired matrix onto that will result in the matrix being your desired matrix with no other influences. However, there's not much reason to go to all that effort.

查看更多
Evening l夕情丶
3楼-- · 2019-05-27 03:58

I ran into same problem, and solved by using:

CGContextTranslateCTM(context, 0.0, rect.size.height);
CGContextScaleCTM(context, 1.0, -1.0);
......
CGGlyph glyphs[text.length];
CTFontRef fontRef = CTFontCreateWithName((__bridge CFStringRef)(fontName), fontSize, NULL);
CTFontGetGlyphsForCharacters(fontRef, (const unichar*)[text cStringUsingEncoding:NSUnicodeStringEncoding], glyphs, text.length);
CGContextShowGlyphsAtPoint(context, destX, destY, (const CGGlyph *)glyphs, ce.text.length);

Just FYI.

查看更多
登录 后发表回答