本文实例为大家分享了iOS实现压缩图片上传功能,供大家参考,具体内容如下
#pragma mark - 打开相机 -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{ UIImage *image = info[UIImagePickerControllerOriginalImage]; self.currentTapCell.photoManageImgView.image = image; NSIndexPath * indexPath = [self.baseTable indexPathForCell:self.currentTapCell]; NSString * key = [NSString stringWithFormat:@"ineed%u%u", indexPath.row, indexPath.section]; [[NetEngineHelper shareNetEngine] postUploadWithUrl:k_uploadPhoto_url image:image fileName:[NSString stringWithFormat:@"%@.png", key] fileType:@"PNG/JPEG/JPG" success:^(id response) { if ([response[@"STATUS"] intValue] != 0) { NSString * str = @""; if (response[@"ERRORDESC"]) { str = response[@"ERRORDESC"]; }else{ str = @"系统异常"; } [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = str; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; }else{ [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = @"上传成功"; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; if ([self.currentTapCell.photoDescribeLable.text isEqualToString:@"上传诊断证明"]) { [self.successUploadDic setValue:response[@"FILEID"] forKey:@"PROVEID"]; } if ([self.currentTapCell.photoDescribeLable.text isEqualToString:@"上传病历首页"]){ [self.successUploadDic setValue:response[@"FILEID"] forKey:@"CASEHOMEID"]; } NSLog(@"上传结果 %@", response); } } fail:^(NSError *error) { [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = error.userInfo[@"NSLocalizedDescription"]; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; }]; [self dismissViewControllerAnimated:YES completion:^{ }]; } #pragma mark - 打开相机 -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{ UIImage *image = info[UIImagePickerControllerOriginalImage]; self.currentTapCell.photoManageImgView.image = image; NSIndexPath * indexPath = [self.baseTable indexPathForCell:self.currentTapCell]; NSString * key = [NSString stringWithFormat:@"ineed%u%u", indexPath.row, indexPath.section]; [[NetEngineHelper shareNetEngine] postUploadWithUrl:k_uploadPhoto_url image:image fileName:[NSString stringWithFormat:@"%@.png", key] fileType:@"PNG/JPEG/JPG" success:^(id response) { if ([response[@"STATUS"] intValue] != 0) { NSString * str = @""; if (response[@"ERRORDESC"]) { str = response[@"ERRORDESC"]; }else{ str = @"系统异常"; } [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = str; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; }else{ [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = @"上传成功"; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; if ([self.currentTapCell.photoDescribeLable.text isEqualToString:@"上传诊断证明"]) { [self.successUploadDic setValue:response[@"FILEID"] forKey:@"PROVEID"]; } if ([self.currentTapCell.photoDescribeLable.text isEqualToString:@"上传病历首页"]){ [self.successUploadDic setValue:response[@"FILEID"] forKey:@"CASEHOMEID"]; } NSLog(@"上传结果 %@", response); } } fail:^(NSError *error) { [AlertHelper shareAlertHelper].onVC = self; [AlertHelper shareAlertHelper].alertTitle = error.userInfo[@"NSLocalizedDescription"]; [AlertHelper shareAlertHelper].alertMessage = nil; [[AlertHelper shareAlertHelper] alertVcWithSureAction:^(id response) { }]; }]; [self dismissViewControllerAnimated:YES completion:^{ }]; } /**上传文件*/ -(void)postUploadWithUrl:(NSString *)urlStr image:(UIImage *)image fileName:(NSString *)fileName fileType:(NSString *)fileTye success:(Success)success fail:(Faile)fail{ NSString * resultStr = [urlStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]; self.success = success; self.failer = fail; AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; manager.responseSerializer = [AFHTTPResponseSerializer serializer]; manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",@"application/json",@"text/plain" ,nil]; [manager.requestSerializer setValue:@"application/json" forHTTPHeaderField:@"Content-Type"]; manager.responseSerializer=[AFJSONResponseSerializer serializer]; manager.requestSerializer = [AFHTTPRequestSerializer serializer]; [manager.securityPolicy setAllowInvalidCertificates:YES]; UIApplication *application = [UIApplication sharedApplication]; application.networkActivityIndicatorVisible = YES; [manager POST:resultStr parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) { NSData * imgData = UIImageJPEGRepresentation(image, 0.02); [formData appendPartWithFileData:imgData name:@"FILENAME" fileName:fileName mimeType:fileTye]; } success:^(AFHTTPRequestOperation *operation, id responseObject) { success(responseObject); application.networkActivityIndicatorVisible = NO; } failure:^(AFHTTPRequestOperation *operation, NSError *error) { fail(error); application.networkActivityIndicatorVisible = NO; }]; }
以上就是本文的全部内容,希望对大家学习iOS程序设计有所帮助。
本文向大家介绍vue.js 实现图片本地预览 裁剪 压缩 上传功能,包括了vue.js 实现图片本地预览 裁剪 压缩 上传功能的使用技巧和注意事项,需要的朋友参考一下 以下代码涉及 Vue 2.0 及 ES6 语法。 目标 纯 javascrpit 实现,兼容ie9及以上浏览器,在本地做好文件格式、长宽、大小的检测,减少浏览器交互。 现实是残酷的,为了兼容Ie9 还是用上了 flash,第二篇来解
本文向大家介绍JS和Canvas实现图片的预览压缩和上传功能,包括了JS和Canvas实现图片的预览压缩和上传功能的使用技巧和注意事项,需要的朋友参考一下 先来一张效果图,压压惊 第一步:用户选择需要上传的图片 在选定了图片后 upload 函数将被触发,我们需要在这个函数中,获取到图片的资源,将它压缩并利用canvas绘制出来,若需要上传到服务器,也可以利用ajax或者其他方式上传。 第二步:获
本文向大家介绍vue实现压缩图片预览并上传功能(promise封装),包括了vue实现压缩图片预览并上传功能(promise封装)的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了vue实现压缩图片预览并上传的具体代码,供大家参考,具体内容如下 主要用到filereader、canvas 以及 formdata 这三个h5的api 过程大致分为三步: 用户使用input file上传图
本文向大家介绍Nodejs实现图片上传、压缩预览、定时删除功能,包括了Nodejs实现图片上传、压缩预览、定时删除功能的使用技巧和注意事项,需要的朋友参考一下 前言 我们程序员日常都会用到图片压缩,面对这么常用的功能,肯定要尝试实现一番。 第一步,node基本配置 这里我们用到的是koa框架,它可是继express框架之后又一个更富有表现力、更健壮的web框架。 1、引入基本配置 2、使用基本配置
本文向大家介绍JavaScript前端实现压缩图片功能,包括了JavaScript前端实现压缩图片功能的使用技巧和注意事项,需要的朋友参考一下 为什么要前端来压缩图片 最近在做一个移动端h5上传图片的功能,本来这个功能并不复杂,只需要将图片文件通过axios传到服务端即可,但是考虑到现在手机设配的拍照功能十分强大,随便一张照片都能动辄五六兆,而服务端的要求是上传图片必须小于两兆,而且直接传这么大图
本文向大家介绍php上传图片并压缩的实现方法,包括了php上传图片并压缩的实现方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲解了php上传图片并压缩的实现方法,之前一篇《PHP实现图片上传并压缩》已经为大家进行了简单介绍,此次实现上传图片然后按照比例缩略图,指定缩略图的最大高度或者最大宽度,具体内容如下 实现代码: 使用方法: 希望本文所述对大家学习php程序设计有所帮助。