Does CGContextSetTextMatrix work for offscreen bitmaps?

青春壹個敷衍的年華 提交于 2019-12-06 07:23:17

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!