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)
が、変換についてよく理解していないため、必要な操作を行うことができません。