1.继承链:NSObject

2.以下有三种方法来创建图片对象

    (1) imageNamed:inBundle:compatibleWithTraitCollection:从image asset或者主要的捆绑包中载入图片来进行创建图片对象。

    (2) imageWithContentsOfFile: or initWithContentsOfFile:从本地文件中载入图片进行创建图片对象

    (3) animatedImageWithImages:duration: and animatedImageNamed:duration:可以创建一个包含多个图片的图片对象,一般是用来播放动画的

3.使用 UIImagePickerController可以让用户进入自己的相册选取照片

4. 使用resizableImageWithCapInsets: or resizableImageWithCapInsets:resizingMode:方法可以定义可伸展图片,可以改变图片的大小以适合容器的大小,让人看起来更加舒服

5.使用isequal方法可以判断两张图片是否相等,这是唯一的方法,使用==是错误的

  1. UIImage* image1 = [UIImage imageNamed:@"MyImage"];
  2. UIImage* image2 = [UIImage imageNamed:@"MyImage"];
  3. // The image objects may be different, but the contents are still equal
  4. if ([image1 isEqual:image2]) {
  5. // Correct. This technique compares the image data correctly.
  6. }

6. 可以使用CGImage and CIImage属性来检索各种版本的图片

7.可以使用 UIImagePNGRepresentation and UIImageJPEGRepresentation功能来生成png或者JPEG格式的图片数据

8.可以使用的方法或者属性:

    (1)+ (UIImage *)imageNamed:(NSString *)name

inBundle:(NSBundle *)bundle
                compatibleWithTraitCollection:(UITraitCollection *)traitCollection,name是在bundle中图片的名称,bundle是用来存储图片的捆绑包,traitcollection暂时还不知道是干嘛的,它里面是这样描述的:The traits associated with the intended environment for the image. Use this parameter to ensure that the correct variant of the image is loaded. If you specify nil, this method uses the traits associated with the main screen.

    (2)[image imageWithData:(NSData *)data]通过指定的图片数据对象用来创建和返回一个图片对象

    (3)+ (UIImage *)imageWithData:(NSData *)data
                     scale:(CGFloat)scale   使用这个方法可以通过一个数据对象和比例创建和返回一个图片对象

    (4)+ (UIImage *)imageWithCGImage:(CGImageRef)cgImage   返回一个指定的quartz image对象转变后的对象

    (5)+ (UIImage *)imageWithCGImage:(CGImageRef)imageRef
                        scale:(CGFloat)scale
                  orientation:(UIImageOrientation)orientation    返回一个设定比例和方向的图片对象 ,cgImage是一个quartz image对象

    (6)+ (UIImage *)imageWithCIImage:(CIImage *)ciImage   创建和返回一个core image对象转变后的图片对象  , core image对象是经过压缩封装的图片

    (7)+ (UIImage *)imageWithCIImage:(CIImage *)ciImage
                        scale:(CGFloat)scale
                  orientation:(UIImageOrientation)orientation     返回一个把core image对象的比例和方向转变后的图片对象

    (8)- (instancetype)initWithData:(NSData *)data
                       scale:(CGFloat)scale   返回一个比例为scale且是data里面的图片对象

    (9)+ (UIImage *)animatedImageNamed:(NSString *)name
                       duration:(NSTimeInterval)duration     返回一个动态图片,并且设定了一定的时间

    (10)+ (UIImage *)animatedImageWithImages:(NSArray<UIImage *> *)images
                            duration:(NSTimeInterval)duration  返回一个图片对象,并且这个对象的内容由图片数组组成、还设定动画的时间

    (11)+ (UIImage *)animatedResizableImageNamed:(NSString *)name
                               capInsets:(UIEdgeInsets)capInsets
                                duration:(NSTimeInterval)duration   返回的图片设定了边界距离属性和动画时间

    (12)+ (UIImage *)animatedResizableImageNamed:(NSString *)name
                               capInsets:(UIEdgeInsets)capInsets
                            resizingMode:(UIImageResizingMode)resizingMode
                                duration:(NSTimeInterval)duration    返回的对象设定了边界距离属性、内部重构属性(我也不知道这是什么鬼)和动画时间,

                                注意:这个方法一般应用在动画需要改变大小的情况,resizingMode默认的类型是UIImageResizingModeTile,动画改变时使用 UIImageResizingModeStretch属性

    (13)- (UIImage *)imageWithRenderingMode:(UIImageRenderingMode)renderingMode  返回的对象经过renderingmode参数渲染

      (14)- (UIImage *)imageWithAlignmentRectInsets:(UIEdgeInsets)alignmentInsets  返回的对象经过边界距离属性调整,如果你重新调整了按钮的大小,但是北京图片的coners不会改变并且大小会跟随按钮的变化而变化

    (15)- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets
                            resizingMode:(UIImageResizingMode)resizingMode    只有当你想使用 UIImageResizingModeStretch方法来重构图片大小的时候你才可以调用这个方法

    (16)- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth
                                 topCapHeight:(NSInteger)topCapHeight        会改变图片里面的中间的区域,大小为leftcapwidth*topcapheight

9.只读属性:size、scale、imageorientation、flipsforrighttoleftlayoutdirection、resizingmode、cgimage、ciimage、images、duration、capinset、alignmentrectinsets、imageasset、traitcollection

10.drawing images

    (1)- (void)drawAtPoint:(CGPoint)point在当前的上下文中绘画图片到指定的点上

    (2)

- (void)drawAtPoint:(CGPoint)point
          blendMode:(CGBlendMode)blendMode
              alpha:(CGFloat)alpha

Parameters

point

The point at which to draw the top-left corner of the image.

blendMode

The blend mode to use when compositing the image.

alpha

The desired opacity of the image, specified as a value between 0.0 and 1.0. A value of 0.0 renders the image totally transparent while 1.0 renders it fully opaque. Values larger than 1.0 are interpreted as 1.0.

   使用某种混合操作和透明度,把图片放在指定的点上
    (3)- (void)drawInRect:(CGRect)rect   在当前的上下文中重新绘制整个图片的大小
    (4)- (void)drawInRect:(CGRect)rect
         blendMode:(CGBlendMode)blendMode
             alpha:(CGFloat)alpha     在当前的上下文中重新绘制图片的大小、模式和透明度
    (5)- (void)drawAsPatternInRect:(CGRect)rect   在指定的矩形中使用Quartz pattern来拼凑图片
 
 
11.辅助功能
    (1)UIImageOrientationUIImageOrientationUp, UIImageOrientationDown , // 180 deg rotation UIImageOrientationLeft , // 90 deg CW UIImageOrientationRight , // 90 deg CCW UIImageOrientationUpMirrored , // as above but image mirrored along // other axis. horizontal flip UIImageOrientationDownMirrored , // horizontal flip UIImageOrientationLeftMirrored , // vertical flip UIImageOrientationRightMirrored , // vertical flip
    (2)UIImageResizingMode:UIImageResizingModeTile(The image is tiled when it is resized. In other words, the interior region of the original image will be repeated to fill in the interior region of the newly resized image..), UIImageResizingModeStretch
    (3)UIImageRenderingMode:UIImageRenderingModeAutomatic, UIImageRenderingModeAlwaysOriginal, UIImageRenderingModeAlwaysTemplate,

 

UIkit框架之UIimage的更多相关文章

  1. iOS开发概述UIkit动力学,讲述UIKit的Dynamic特性,UIkit动力学是UIkit框架中模拟真实世界的一些特性。

    转发:http://my.oschina.net/u/1378445/blog/335014 iOS UIKit动力学 Dynamics UIAttachmentBehavior 实现iMessage ...

  2. UIKit 框架之Bar、Controller

    UIKit框架中有各种Bar,UITabBar.UINavigationBar.UIToolbar.Bar对应的就有一些Item,tabBarItem.navigationItem.toolbarIt ...

  3. UIKit框架使用总结--看看你掌握了多少

    一.经常使用的,基本就是每次项目迭代都需要使用的 UIView.UILabel.UIImage.UIColor.UIFont.UIImageView.UITextField.UIButton. UIS ...

  4. Swift - 重写UIKit框架类的init初始化方法(以UITabBarController为例)

    原来写了篇文章讲UITabBarController的用法,当时是从UIViewController跳转到UITabBarController页面,代码如下: 1 self.presentViewCo ...

  5. UIKit框架

    在今后的应用程序构建中,会陆续使用各式各样的控件,因此UIKit框架的引入是必不可少的! 一.简介 UIKitk框架提供一系列的Class(类)来建立和管理iPhone OS应用程序的用户界面接口.应 ...

  6. iOS学习32之UIKit框架-可视化编程-XIB

    1. Interface Builder 可视化编程 1> 概述 GUI : 图形用户界面(Graphical User Interface, 简称GUI, 又称图形化界面) 是指采用图形方式显 ...

  7. 基础框架Fundation和UIkit框架的定义和使用

    Foundation 框架为所有应用程序提供基本的系统服务 您的应用程序以及 UIKit 和其他框架,都建立在 Foundation 框架的基础结构之上.Foundation 框架提供许多基本的对象类 ...

  8. iOS开发UIKit框架-可视化编程-XIB

    1. Interface Builder 可视化编程 1> 概述 GUI : 图形用户界面(Graphical User Interface, 简称GUI, 又称图形化界面) 是指采用图形方式显 ...

  9. 79、iOS 的Cocoa框架、Foundation框架以及UIKit框架

    Cocoa框架是iOS应用程序的基础 1. Cocoa是什么? Cocoa是 OS X和ios 操作系统的程序的运行环境. 是什么因素使一个程序成为Cocoa程序呢?不是编程语言,因为在Cocoa开发 ...

随机推荐

  1. robotframework笔记17

    执行测试用例 基本用法 机器人框架从命令行执行测试用例,和 最终的结果是,在默认情况下,一个 输出文件 以XML格式和一个HTML 报告 和 日志 . 执行后,可以组合和输出文件 否则 进行后期处理  ...

  2. [saiku] olap数据源管理

    一.应用场景 系统初始化的时候 如果没有创建olap数据源需要先创建olap数据源 否则直接获取所有的数据源存放在全局变量datasources里面以便于后续步骤中获取plap-connections ...

  3. edm注意细节

    Email Direct Marketing不要有js,css也放在html里面不能有热区,所有的border要设置为0在浏览器里面邮件发送可能会歪掉,可以测试接受后是否歪掉 有点时候表格会有细缝等等 ...

  4. [转载]Badboy使用教程

    Badboy-系列教程-资料整理: Badboy自动化测试工具1 界面介绍 http://leafwf.blog.51cto.com/872759/1107079 Badboy自动化测试工具2 录制 ...

  5. VirtualBox – Error In supR3HardenedWinReSpawn 问题解决办法

    转:http://chenpeng.info/html/3510---------VirtualBox – Error In supR3HardenedWinReSpawn---------<h ...

  6. placehold.it-在线图片生成器(转载)

    做网站的时候 如果 有的产品等客户没有上传图片,可以用这个网站生成的图片 并配以文字进行图片的占位 以免造成页面的空挡或者页面错位等 原文地址:http://www.cnblogs.com/xumen ...

  7. Java 集合系列 13 WeakHashMap

    java 集合系列目录: Java 集合系列 01 总体框架 Java 集合系列 02 Collection架构 Java 集合系列 03 ArrayList详细介绍(源码解析)和使用示例 Java ...

  8. Python eclipse开发环境搭建

    http://jingyan.baidu.com/article/cd4c2979101f02756f6e6064.html http://jingyan.baidu.com/article/1876 ...

  9. backbonejs中的模型篇(三)

    一:在模型中使用嵌套属性 Backbone的扩展插件 Backbone-Nested下载并添加引用 1:定义一个新的模型对象,使用Backbone.NestedModel作为其基类对象 var _mo ...

  10. Qml一些技巧

    1.从ListView中获取当前选中项 myList.currentItem.children[0].text 可以获取ListView的选择项的一个个元素.注意children的使用.