zoukankan      html  css  js  c++  java
  • 根据size截取图片中间矩形区域的图片 这里的size是正方形

    #pragma mark 根据size截取图片中间矩形区域的图片 这里的size是正方形
    -(UIImage *)cutCenterImage:(UIImage *)image size:(CGSize)size{
        CGSize imageSize = image.size;
        CGRect rect;
        //根据图片的大小计算出图片中间矩形区域的位置与大小
        if (imageSize.width > imageSize.height) {
            float leftMargin = (imageSize.width - imageSize.height) * 0.5;
            rect = CGRectMake(leftMargin, 0, imageSize.height, imageSize.height);
        }else{
            float topMargin = (imageSize.height - imageSize.width) * 0.5;
            rect = CGRectMake(0, topMargin, imageSize.width, imageSize.width);
        }
        
        CGImageRef imageRef = image.CGImage;
        //截取中间区域矩形图片
        CGImageRef imageRefRect = CGImageCreateWithImageInRect(imageRef, rect);
        
        UIImage *tmp = [[UIImage alloc] initWithCGImage:imageRefRect];
        CGImageRelease(imageRefRect);
        
        UIGraphicsBeginImageContext(size);
        CGRect rectDraw = CGRectMake(0, 0, size.width, size.height);
        [tmp drawInRect:rectDraw];
        // 从当前context中创建一个改变大小后的图片
        tmp = UIGraphicsGetImageFromCurrentImageContext();
        
        // 使当前的context出堆栈
        UIGraphicsEndImageContext();
        
        return tmp;
    }
    
  • 相关阅读:
    Atos cannot get symbols from dSYM of archived application
    iOS 中捕获程序崩溃日志 (2014-04-22 17:35:59)
    mysql创建索引
    maven整理项目spring配置文件加载问题
    js继承
    创建对象的方式
    js闭包
    js两种创建对象方式
    shiro-web整合
    shiro连接数据库
  • 原文地址:https://www.cnblogs.com/sozui/p/4395872.html
Copyright © 2011-2022 走看看