我创建pdf文件。我需要绘制旋转文本。目前我有这个pdf文件
我绘制文本的代码
............
CGContextTranslateCTM(context, 0, frameRect.origin.y*2);
CGContextScaleCTM(context, 1.0, -1.0);
// Draw the frame.
CTFrameDraw(frame, context);
// Add these two lines to reverse the earlier transformation.
CGContextScaleCTM(context, 1.0, -1.0);
CGContextTranslateCTM(context, 0, (-1)*frameRect.origin.y*2);
我知道我必须使用CGContextRotateCTM(CGContextRef c, GFloat angle)
,但我不了解转换,我不能按照我的需要做。