iOS 从相机或相册获取图片并裁剪

来源:未知 责任编辑:责任编辑 发表时间:2014-04-20 03:36 点击:

   今天遇到一个用户头像上传的问题,需要从相册或者相机中读取图片。代码很简单,抽取关键部分,如下:


 

/load user image  
- (void)UesrImageClicked 
{ 
    UIActionSheet *sheet; 
     
    // 判断是否支持相机  
    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) 
    { 
        sheet  = [[UIActionSheet alloc] initWithTitle:@"选择图像" delegate:self cancelButtonTitle:nil destructiveButtonTitle:@"取消" otherButtonTitles:@"拍照", @"从相册选择", nil]; 
    } 
    else { 
        sheet = [[UIActionSheet alloc] initWithTitle:@"选择图像" delegate:self cancelButtonTitle:nil destructiveButtonTitle:@"取消" otherButtonTitles:@"从相册选择", nil]; 
    } 
     
    sheet.tag = 255; 
     
    [sheet showInView:self.view]; 
} 
 
 
#pragma mark - action sheet delegte  
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex 
{ 
    if (actionSheet.tag == 255) { 
        NSUInteger sourceType = UIImagePickerControllerSourceTypePhotoLibrary; 
        // 判断是否支持相机  
        if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) { 
            switch (buttonIndex) { 
                case 0: 
                    return; 
                case 1: //相机  
                    sourceType = UIImagePickerControllerSourceTypeCamera; 
                    break; 
                case 2: //相册  
                    sourceType = UIImagePickerControllerSourceTypePhotoLibrary; 
                    break; 
            } 
        } 
        else { 
            if (buttonIndex == 0) { 
                return; 
            } else { 
                sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; 
            } 
        } 
        // 跳转到相机或相册页面  
        UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init]; 
        imagePickerController.delegate = self; 
        imagePickerController.allowsEditing = YES; 
        imagePickerController.sourceType = sourceType; 
         
        [self presentViewController:imagePickerController animated:YES completion:^{}]; 
    } 
} 
 
#pragma mark - image picker delegte  
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 
{ 
    [picker dismissViewControllerAnimated:YES completion:^{}]; 
     
    UIImage *image = [info UIImagePickerControllerOriginalImage];     
    userImageView.image = image; 
     
    NSData *imageData = UIImageJPEGRepresentation(image, COMPRESSED_RATE); 
    UIImage *compressedImage = [UIImage imageWithData:imageData]; 
     
    [HttpRequestManager uploadImage:compressedImage httpClient:self.httpClient delegate:self]; 
     
} 

//load user image
- (void)UesrImageClicked
{
    UIActionSheet *sheet;
   
    // 判断是否支持相机
    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
    {
        sheet  = [[UIActionSheet alloc] initWithTitle:@"选择图像" delegate:self cancelButtonTitle:nil destructiveButtonTitle:@"取消" otherButtonTitles:@"拍照", @"从相册选择", nil];
    }
    else {
        sheet = [[UIActionSheet alloc] initWithTitle:@"选择图像" delegate:self cancelButtonTitle:nil destructiveButtonTitle:@"取消" otherButtonTitles:@"从相册选择", nil];
    }
   
    sheet.tag = 255;
   
    [sheet showInView:self.view];
}


#pragma mark - action sheet delegte
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (actionSheet.tag == 255) {
        NSUInteger sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        // 判断是否支持相机
        if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
            switch (buttonIndex) {
                case 0:
                    return;
                case 1: //相机
                    sourceType = UIImagePickerControllerSourceTypeCamera;
                    break;
                case 2: //相册
                    sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
                    break;
            }
        }
        else {
            if (buttonIndex == 0) {
                return;
            } else {
                sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
            }
        }
        // 跳转到相机或相册页面
        UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
        imagePickerController.delegate = self;
        imagePickerController.allowsEditing = YES;
        imagePickerController.sourceType = sourceType;
       
        [self presentViewController:imagePickerController animated:YES completion:^{}];
    }
}

#pragma mark - image picker delegte
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
 [picker dismissViewControllerAnimated:YES completion:^{}];
   
    UIImage *image = [info UIImagePickerControllerOriginalImage];   
    userImageView.image = image;
   
    NSData *imageData = UIImageJPEGRepresentation(image, COMPRESSED_RATE);
    UIImage *compressedImage = [UIImage imageWithData:imageData];
   
    [HttpRequestManager uploadImage:compressedImage httpClient:self.httpClient delegate:self];
   
}


	
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Lexical or Preprocessor Issue 'xxx.h
  • ios学习笔记(二)xcode 4.3.2下实现基本交互
  • ios版本的helloworld
  • iphone(object-c) 内存管理(3) 有效的内存管理 前半部分
  • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
  • IOS类似iphone通讯录TableView的完整demo【附源码】
  • UITableView一些方法
  • [iPhone中级]iPhone团购信息客户端的开发 (二)
  • iphone(object-c)内存管理(1)
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1