zoukankan      html  css  js  c++  java
  • UIImageC处理

    UIImageC处理

    1、等比缩放

    C代码  收藏代码
    1. - (UIImage *) scaleImage:(UIImage *)image toScale:(float)scaleSize {  
    2.     UIGraphicsBeginImageContext(CGSizeMake(image.size.width * scaleSize, image.size.height * scaleSize);  
    3.     [image drawInRect:CGRectMake(0, 0, image.size.width * scaleSize, image.size.height * scaleSize)];  
    4.     UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();  
    5.     UIGraphicsEndImageContext();  
    6.     return scaledImage;  
    7. }  

    2、自定义大小

    C代码  收藏代码
    1. - (UIImage *) reSizeImage:(UIImage *)image toSize:(CGSize)reSize {  
    2.     UIGraphicsBeginImageContext(CGSizeMake(reSize.width, reSize.height));  
    3.     [image drawInRect:CGRectMake(0, 0, reSize.width, reSize.height)];  
    4.     UIImage *reSizeImage = UIGraphicsGetImageFromCurrentImageContext();  
    5.     UIGraphicsEndImageContext();  
    6.     return reSizeImage;  
    7. }  

    3、处理某个特定的view

         只要是继承UIView的object 都可以处理
         必须先import QuzrtzCore.framework

    C代码  收藏代码
    1. -(UIImage*) captureView:(UIView *)theView {  
    2.     CGRect rect = theView.frame;  
    3.     UIGraphicsBeginImageContext(rect.size);  
    4.     CGContextRef context = UIGraphicsGetCurrentContext();  
    5.     [theView.layer renderInContext:context];  
    6.     UIImage *img = UIGraphicsGetImageFromCurrentImageContext();  
    7.     UIGraphicsEndImageContext();  
    8.     return img;  
    9. }  

    4、存储图片

        4.1、存储到app的文件里

        把要处理的图片以image.png的名字存储到app home地下的Document目录中

    C代码  收藏代码
    1. NSString *path = [[NSHomeDirectory()stringByAppendingPathComponent:@"Documents"]stringByAppendingPathComponent:@"image.png"];  
    2. [UIImagePNGRepresentation(image) writeToFile:pathatomically:YES];  

        4.2、存储到手机的图片库中

    C代码  收藏代码
    1. CGImageRef screen = UIGetScreenImage();  
    2. UIImage* image = [UIImage imageWithCGImage:screen];  
    3. CGImageRelease(screen);  
    4. UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);  

    获取当前app的名称和版本号

    C代码  收藏代码
    1. NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];  
    2. // app名称  
    3. NSString *name = [infoDictionary objectForKey:@"CFBundleDisplayName"];  
    4. // app版本  
    5. NSString *version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];  
    6. // app build版本  
    7. NSString *build = [infoDictionary objectForKey:@"CFBundleVersion"];  

    UILabel根据text自动调整大小

    C代码  收藏代码
    1. label.text = @"**********";  
    2. CGRect frame = label.frame;  
    3. frame.size.height = 10000;  // 设置一个很大的高度  
    4. label.frame = frame;  
    5. [label sizeToFit];  
    6. frame.size.height = label.frame.size.height;  
    7. label.frame = frame;  

     

    直接拨打有分机号的电话

    C代码  收藏代码
    1. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://01011112222,3333"]];  

     

    参考:http://apluck.iteye.com/blog/1418640#

  • 相关阅读:
    C#的拓展方法
    敲代码
    获取GridView的rowdata
    C#为控件增加或删除委托
    ul嵌套ul IE7下空白行解决方案
    C#设置日期为指定的月份和日子
    web多选上传插件Uploadify
    如何通过key获取value值,键找值!多线程单利模式 3月15日第三版 希望各位路过的高手批评指正 给出更优秀的代码方便后来人
    IE条件语句,IE hack大全
    实现“记录用户登录时间和退出时间,同时记录用户IP,并且要记录用户IP对应的省和城市地址”
  • 原文地址:https://www.cnblogs.com/tig666666/p/4808184.html
Copyright © 2011-2022 走看看