菜鸟教程小白 发表于 2022-12-12 18:24:30

ios - 如何将 UIScrollView 的变换应用到 UIView?


                                            <p><p>在我的应用程序中,我有一个 ScrollView ,其中添加了一个名为 allView 的 subview 。
在 ScrollView 委托(delegate)方法中,我将 ScrollViewsubview 的当前转换值应用到另一个称为绘制 View 的 View </p>

<pre><code>paintView.transform = allView.transform
</code></pre>

<p>并将其保存到磁盘。</p>

<p>在该过程中创建的图像看起来与屏幕上的不同。为什么?我该如何解决? </p>

<p><strong> ViewController </strong></p>

<pre><code>- (void)scrollViewDidScroll:(UIScrollView *)scrollView;                                             {
    self.paintView.transform =self.allView.transform;
    ;   
}
- (void)scrollViewDidZoom:(UIScrollView *)scrollView{
         self.backgroundView.transform = self.allView.transform;
      ;
    }
</code></pre>

<p><strong>绘画 View </strong></p>

<p>在 PaintView 的绘制矩形内,我正在尝试从 ScrollView 应用转换和</p>

<pre><code>- (void)drawRect:(CGRect)rect
{

// Drawing code
// Draw on the screen
    CGContextRef ctx1 =UIGraphicsGetCurrentContext();
    CGContextConcatCTM(ctx1, self.transform);

    CGColorRef wh = [CGColor];
    CGContextSetStrokeColorWithColor(ctx1, wh);
    CGContextMoveToPoint(ctx1, 0, 0);
    CGContextAddLineToPoint(ctx1, 200, 200);
    CGContextStrokePath(ctx1);

   // Apply scroll view&#39;s transformation
    CGRectr = CGRectApplyAffineTransform(rect,self.transform );

    //that gives a resized image
    UIGraphicsBeginImageContextWithOptions(r.size, NO, 0.0);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextConcatCTM(ctx, self.transform);
    // stroke and so on         
   CGContextSetStrokeColorWithColor(ctx, wh);
   CGContextMoveToPoint(ctx, 0, 0);
   CGContextAddLineToPoint(ctx, 200, 200);
   CGContextStrokePath(ctx);

    Getting image with entire content.
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    //Clipping the image
    CGImageRef cgImg = CGImageCreateWithImageInRect(image.CGImage, rect);
    UIImage *img = ;
    NSData * d = UIImageJPEGRepresentation(img, 0.8);
    //saving the image (for debugging)
    ;
    UIGraphicsEndImageContext();   
}
</code></pre>

<p>iOS 模拟器
<img src="/image/UKinF.png" alt="Desired Effect"/> </p>

<p>图像保存到磁盘
<img src="/image/YjSGT.jpg" alt="Result"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在无法运行代码的情况下,在这里诊断问题可能有点困难。但是,我认为问题可能出在您剪切图像的这些行上:</p>

<pre><code>// Clipping the image
CGImageRef cgImg = CGImageCreateWithImageInRect(image.CGImage, rect);
UIImage *img = ;
</code></pre>

<p>我认为您实际上只是想获得 ScrollView 的可见矩形,即 <code>scrollView.frame</code> 而不是填充 ScrollView 整个 <code>contentSize</code> 的 subview 。因此,使用某种方式(例如 <code>paintView</code> 上的属性,例如 <code>visibleFrame</code>),我会将这些行修改为如下所示:</p>

<pre><code>// Clipping the image
CGImageRef cgImg = CGImageCreateWithImageInRect(image.CGImage, self.visibleFrame);
UIImage *img = ;
</code></pre>

<p>希望这可以帮助您解决这个问题!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将 UIScrollView 的变换应用到 UIView?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21448138/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21448138/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将 UIScrollView 的变换应用到 UIView?