菜鸟教程小白 发表于 2022-12-12 21:20:41

IOS:CGRect是对的,但是UIImage翻转了


                                            <p><p>我知道在绘图时我必须平移坐标系。问题是当我使用时:</p>

<pre><code>CGContextTranslateCTM(_context, 0.0, _size.height);
CGContextScaleCTM(_context, 1.0, -1.0);
</code></pre>

<p>我的图像的矩形被翻转,图像是“非翻转”的,如果我不使用上面的图像,我的图像被翻转,矩形是非翻转的。</p>

<p>这是我的代码:</p>

<pre><code>CGRectMake(60, 100, image.size.width, image.size.height);
CGContextSaveGState(_context);
UIGraphicsBeginImageContext(image.size);
CGContextClearRect(_context, placeholderRect);
CGContextDrawImage(_context, placeholderRect, image.CGImage);
UIGraphicsEndImageContext();
CGContextRestoreGState(_context);
</code></pre>

<p>如何在图像翻转时保持我的矩形(非翻转)?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>而不是使用 <code>CGContextDrawImage</code> 使用 <code>;</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于IOS:CGRect是对的,但是UIImage翻转了,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10896578/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10896578/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS:CGRect是对的,但是UIImage翻转了