美文网首页IOS-UI
UIImage-使用集合

UIImage-使用集合

作者: 思念那年慕云 | 来源:发表于2017-02-26 18:49 被阅读143次
系统方法一:实现图片旋转、轴对称、缩放

+ (UIImage *)imageWithCGImage:(CGImageRef)cgImage scale:(CGFloat)scale orientation:(UIImageOrientation)orientation;

#cgImage:这里是传入的图片(利用方法二可以裁剪自己想要的frame(即图片的某一部分))
#scale:1:原图;  >1:为缩小;  0-1:为放大
      注意:1,如果图片已经写死了宽高,那么这里的缩放是无效的。
           2,scale不能为负数(为负数啥也不显示了)
#orientation:
typedef NS_ENUM(NSInteger, UIImageOrientation) {
    UIImageOrientationUp,            // 不旋转(默认)
    UIImageOrientationDown,          // 旋转180˚(即上下颠倒)
    UIImageOrientationLeft,          // 向左旋转90˚
    UIImageOrientationRight,         // 向右旋转90˚

    UIImageOrientationUpMirrored,    // 不旋转(轴对称)
    UIImageOrientationDownMirrored,   // 旋转180˚(即上下颠倒,再轴对称)
    UIImageOrientationLeftMirrored,   // 向左旋转90˚,再轴对称
    UIImageOrientationRightMirrored, // 向右旋转90˚,再轴对称
};

 + (UIImage *)imageWithCGImage:(CGImageRef)cgImage scale:(CGFloat)scale orientation:(UIImageOrientation)orientation;
系统方法二:截取图片的某一部分

CGImageCreateWithImageInRect(CGImageRef image,CGRect rect)

#image:要裁剪的图片
#rect:裁剪的frame
- (UIImage *)clipImageInRect:(CGRect)rect imag:(UIImage *)image
{
    CGImageRef imageRef = CGImageCreateWithImageInRect([image CGImage], rect);
    UIImage *thumbScale = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);
    return thumbScale;
}
//高清,无损截图
+(UIImage*)captureScreen:(UIView*) imageView
{
    //第三个参数为0可以自适应屏幕,但项目中出现了崩溃,改为了1没有崩溃、
    UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 0.0);
    [imageView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return viewImage;
}

//模糊版
    /**
        截图
        1,开启图片上下文
        2,将self.view.layer渲染到当前上下文中
        3,由当前上下文输出图片
        4,关闭图片上下文
     */
    UIGraphicsBeginImageContext(self.view.bounds.size);
    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    
    UIGraphicsEndImageContext();

系统方法三:拉伸图片
+ (UIImage *)resizebleImageWithName:(NSString *)imageName {
    UIImage *imageNor = [UIImage imageNamed:imageName];
    CGFloat w = imageNor.size.width;
    CGFloat h = imageNor.size.height;
    imageNor = [imageNor resizableImageWithCapInsets:UIEdgeInsetsMake(w * 0.5,h * 0.5 , w * 0.5, h * 0.5) resizingMode:UIImageResizingModeStretch];
    return imageNor;
}
系统方法四:由颜色生成图片
+ (UIImage *)createImageWithColor:(UIColor *)color {
    CGRect rect=CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return theImage;
}
方法五:图片上面添加水印的6种方式

相关文章

  • UIImage-使用集合

    系统方法一:实现图片旋转、轴对称、缩放 + (UIImage *)imageWithCGImage:(CGImag...

  • UIImageView、UIImage-图片

    属性 创建 添加图片 用类方法创建UIImage(png格式可以省略后缀) 用路径来获得图片 根据网址来获得图片 ...

  • mongodb集合

    创建集合 db.createCollection("demo") 固定集合 固定集合无法使用remove,只能使用...

  • 29Chapter Arraylist集合2020-01-20

    集合的定义 集合的使用 集合的遍历

  • scala学习(7)

    转换集合 Java和Scala转换 使用集合的模式匹配 可变集合 使用集合构建器 Builder是Buffer的一...

  • 开发规范(2)

    集合转数组和数组转集合 使用集合转数组的方法,必须使用集合的 toArray(T[] array),传入的是类型完...

  • 使用集合

    第 11 章 了解框架之间如何配合工作 小结本章中,我介绍了框架的概念并讨论了 Objective-C 自带的...

  • 集合使用

    java中集合是比较重要的一个知识点,这里是作为学习,记录一下 集合主要包含list,set和map list,s...

  • kotlin练习 ---- 集合练习

    kotlin练习 - 集合练习 Set集合 Set集合创建 Set集合的使用 List集合 List集合创建 Li...

  • JavaSE学习笔记——泛型

    泛型在集合中的使用集合中不使用泛型时: public void test1(){ //1.在集合中没有使用...

网友评论

    本文标题:UIImage-使用集合

    本文链接:https://www.haomeiwen.com/subject/jthnwttx.html