zoukankan      html  css  js  c++  java
  • Create ThumbnailImage

    #pragma mark - Set thumbnailImage
    -(UIImage*)setThumbnailFromImage:(UIImage *)image
    {
        CGSize origImageSize = image.size;
        
        // The rectangle of the thumbnail
        CGRect newRect = CGRectMake(0, 0, 40, 40);
        
        // Figure out a scaling ratio to make sure we maintain the same aspect ratio
        float ratio = MAX(newRect.size.width / origImageSize.width,
                          newRect.size.height / origImageSize.height);
        
        // Creating a transparent bitmap context with a scaling factor
        // equal to that of the screen
        UIGraphicsBeginImageContextWithOptions(newRect.size, NO, .0);
        
        // Create a path that is rounded rectangle
        UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:newRect cornerRadius:5.0];
        
        // Make all subsequent drawing clip to this rounded rectangle.
        [path addClip];
        
        // Center the image in the thumbnail rectangle
        CGRect projectRect;
        projectRect.size.width = origImageSize.width * ratio;
        projectRect.size.height = origImageSize.height * ratio;
        projectRect.origin.x = (newRect.size.width - projectRect.size.width) / 2.0;
        projectRect.origin.y = (newRect.size.height - projectRect.size.height) / 2.0;
        
        // Draw the image on it
        [image drawInRect:projectRect];
        
        // Get the image from the image context, keep it as thumbnail
        UIImage *smallImage = UIGraphicsGetImageFromCurrentImageContext();
        
        // Clean up the image context resources
        UIGraphicsEndImageContext();
        return smallImage;
    }
  • 相关阅读:
    Vue.js+express建站
    单页应用(SPA)简介
    Z形记之CentOS7
    Z形记之比较两个目录下文件异同
    Z形记之Linux的那些事:安装Nginx
    SQL之修改字段类型
    Scrapy系列之爬取豆瓣电影
    Scrapy和MongoDB的应用---爬取
    BigDecimal类的常用算法
    回到顶部功能
  • 原文地址:https://www.cnblogs.com/1oo1/p/4005595.html
Copyright © 2011-2022 走看看