菜鸟教程小白 发表于 2022-12-13 13:16:04

ios - 如何绘制 UIImage 图像,例如适合样式


                                            <p><p>我想从 jpg 文件中获取缩略图并显示为 UIImage。显示样式为适合模式,例如 UIViewContentModeScaleAspectFill。下面是示例代码,但是太复杂了。</p>

<pre><code>-(UIImage*)scaleToSize:(CGSize)size   
{
    CGFloat width = CGImageGetWidth(self.CGImage);
    CGFloat height = CGImageGetHeight(self.CGImage);   

    NSLog(@&#34;size w=%f, h=%f, image w=%f, h=%f&#34;, size.width, size.height, width, height);

    float verticalRadio = size.height*1.0/height;   
    float horizontalRadio = size.width*1.0/width;

    float radio = 1;
    if(verticalRadio&gt;1 &amp;&amp; horizontalRadio&gt;1)
    {
      radio = verticalRadio &gt; horizontalRadio ? horizontalRadio : verticalRadio;   
    }
    else
    {
      radio = verticalRadio &lt; horizontalRadio ? verticalRadio : horizontalRadio;   
    }

    width = width*radio;
    height = height*radio;
    NSLog(@&#34;width=%f, height=%f&#34;, width, height);

    int xPos = (size.width - width)/2;
    int yPos = (size.height-height)/2;

    NSLog(@&#34;xpos=%d, ypos=%d&#34;, xPos, yPos);

    CGSize sz = CGSizeMake(width, height);
    UIGraphicsBeginImageContext(sz);   

    //
    ;   
    UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();   
    UIGraphicsEndImageContext();   

    CGRect rt = CGRectMake(-xPos, -yPos, size.width, size.height);
    UIImage* thub = ;

    scaledImage = nil;
    return thub;
}

    - (UIImage *)getSubImage:(CGRect) rect{
    CGImageRef subImageRef = CGImageCreateWithImageInRect(self.CGImage, rect);
    CGRect smallBounds = CGRectMake(rect.origin.x, rect.origin.y,       CGImageGetWidth(subImageRef), CGImageGetHeight(subImageRef));

    NSLog(@&#34;small bounds x=%f, y=%f, w=%f, h=%f&#34;, smallBounds.origin.x, smallBounds.origin.y, smallBounds.size.width, smallBounds.size.height);

    UIGraphicsBeginImageContext(smallBounds.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextDrawImage(context, smallBounds, subImageRef);
    UIImage* smallImg = ;
    UIGraphicsEndImageContext();

    return smallImg;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我已经更新了方法:</p>

<pre><code>-(UIImage*)getSubImage:(CGSize)size   
{
    CGFloat width = CGImageGetWidth(self.CGImage);
    CGFloat height = CGImageGetHeight(self.CGImage);

    float verticalRadio = size.height*1.0/height;   
    float horizontalRadio = size.width*1.0/width;

    float radio = 1;
    radio = verticalRadio &lt; horizontalRadio ? horizontalRadio : verticalRadio;

    CGRect displayRect = CGRectMake((size.width - width*radio)/2.0f,
                              (size.height-height*radio)/2.0f,
                              width*radio,
                              height*radio);


    // create a bitmap context and then set the context to current using   
    UIGraphicsBeginImageContext(size);   

    //clip
    UIRectClip(displayRect);

    //draw the bitmap in rect   
    ;   

    // from context to get a UIIMage
    UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();   

    // move context out of buffer
    UIGraphicsEndImageContext();   

    NSLog(@&#34;getSubImage ----&gt;&#34;);

    // return.
    return scaledImage;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何绘制 UIImage 图像,例如适合样式,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10185529/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10185529/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何绘制 UIImage 图像,例如适合样式