图片上传

@interface ViewController ()<UIAlertViewDelegate,UIImagePickerControllerDelegate,UIActionSheetDelegate,UINavigationControllerDelegate>//<UITableViewDelegate,UITableViewDataSource>
{
    UIImage  * img_head;
    NSData   * data_imghead;
}

@property (nonatomic,weak)UIButton *iconBtn;
@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    UIButton *iconBtn = [[UIButton alloc]initWithFrame:CGRectMake(40, 40, 70,70)];
    iconBtn.backgroundColor =[UIColor whiteColor];
    self.iconBtn = iconBtn;
    [self.view addSubview:iconBtn];
    [iconBtn addTarget:self action:@selector(iocnBtnClick) forControlEvents:UIControlEventTouchUpInside];  
}

-(void)iocnBtnClick
{
    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
                                                             delegate:self
                                                    cancelButtonTitle:@"取消"
                                               destructiveButtonTitle:@"拍照上传"
                                                    otherButtonTitles:@"本地照片上传",nil];
    [actionSheet setBackgroundColor:[UIColor clearColor]];
    actionSheet.tag = -2;
    [actionSheet showInView:self.view];
}

#pragma mark UIActionSheetDelegate
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    UIImagePickerController * picker = [[UIImagePickerController alloc]init];
    switch (buttonIndex)
    {
        case 0://take photo
        {
            //            [self presentModalViewController:picker animated:YES];
            [self presentViewController:picker animated:YES completion:nil];
            picker.sourceType = UIImagePickerControllerSourceTypeCamera;
            picker.allowsEditing = YES;
            picker.delegate = self;
            
            break;
        }
        case 1://upload image
        {
            
            
            //            [self presentViewController:elcPicker animated:YES completion:nil];
            [self presentViewController:picker animated:YES completion:nil];
            picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
            picker.allowsEditing = YES;
            picker.delegate = self;
            break;
        }
        case 2://cancel
        {
            // [self.presentedViewController dismissModalViewControllerAnimated:YES];
            break;
        }
        default:
            break;
    } 
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
{
    /*添加处理选中图像代码*/
    [picker dismissModalViewControllerAnimated:YES];
    img_head =[[UIImage alloc] init];
    img_head=image;
    [self.iconBtn setImage:image forState:0];
    data_imghead=[NSData dataWithData:UIImageJPEGRepresentation(image, 1)];
    if (data_imghead);
    else
    {
        data_imghead = UIImageJPEGRepresentation(image, 1);
    }
    [[NSUserDefaults standardUserDefaults]removeObjectForKey:@"datahead"];
    [[NSUserDefaults standardUserDefaults]setObject:data_imghead forKey:@"datahead"];
}

- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
    /*添加代码,处理选中图像又取消的情况*/
    //    [picker dismissModalViewControllerAnimated:YES];
    [picker dismissViewControllerAnimated:YES completion:nil];
}

2.ios上传图片:

   1. 将上传图片的路径传过去

    2.将图片的base 64编码传过去:

        UIImage图片转成base64字符串:

UIImage *_originImage = [UIImage imageNamed:@"full_playlist_hl.png"];
NSData *_data = UIImageJPEGRepresentation(_image, 1.0f);
NSString *base64Data =[data_imghead base64Encoding];
//相当于java里的urlEncode
NSString *baseString = 
(__bridge NSString *) CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,
                                                              (CFStringRef)base64Data,
                                                              NULL,
                                                              CFSTR(":/?#[]@!$&’()*+,;="),
                                                              kCFStringEncodingUTF8); 

NSLog(@"===Encoded image:\n%@", _encodedImageStr);


        Base64字符串转UIImage图片:

NSData *_decodedImageData   = [[NSData alloc] initWithBase64Encoding:_encodedImageStr];

UIImage *_decodedImage      = [UIImage imageWithData:_decodedImageData];

NSLog(@"===Decoded image size: %@", NSStringFromCGSize(_decodedImage.size));

    


转载于:https://my.oschina.net/u/1041771/blog/354239

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值