1、網(wǎng)絡(luò)請求中常用的有Get請求,Post請求,還有Head、Put、Delete、Options、Trace、Connect等
香洲網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),香洲網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為香洲數(shù)千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的香洲做網(wǎng)站的公司定做!
GET 獲取指定資源
POST 向指定資源提交數(shù)據(jù)進(jìn)行處理請求,在RESTful風(fēng)格中用于新增資源
HEAD 獲取指定資源頭部信息
PUT 替換指定資源(不支持瀏覽器操作)
DELETE 刪除指定資源
OPTIONS 允許客戶端查看服務(wù)器的性能
TRACE 回顯服務(wù)器收到的請求,主要用于測試或診斷
CONNECT 預(yù)留給能夠?qū)⑦B接改為管道方式的代理服務(wù)器(HTTP代理使用)
2、上傳圖片在網(wǎng)頁中最常用的就是POST請求了,將圖片編碼到POST請求體(body)中,通過請求數(shù)據(jù)一起發(fā)送到服務(wù)器上;
3、在iOS開發(fā)中,圖片上傳的請求體非常難寫,格式要求非常嚴(yán)格,出一點錯誤都會造成上傳失敗,或請求數(shù)據(jù)失敗,先看格式:
--Boundary+72D4CD655314C423
Content-Disposition: form-data; name="uploadFile"; filename="001.png"
Content-Type:image/png
Content-Transfer-Encoding: binary
... contents of boris.png ...
--Boundary+72D4CD655314C423--
這是一個不帶其他任務(wù)參數(shù),body中只有一張圖就要寫成這樣
分別說明一下:
--Boundary+72D4CD655314C423 // 分割符,以“--”開頭,后面的字隨便寫,只要不寫中文即可
Content-Disposition: form-data; name="uploadFile"; filename="001.png" // 這里注明服務(wù)器接收圖片的參數(shù)(類似于接收用戶名的userName)及服務(wù)器上保存圖片的文件名
Content-Type:image/png // 圖片類型為png
Content-Transfer-Encoding: binary // 編碼方式
// 這里是空一行,必不可少??!
... contents of boris.png ... // 圖片數(shù)據(jù)部分
--Boundary+72D4CD655314C423-- // 分隔符后面以"--"結(jié)尾,表明結(jié)束
在項目中經(jīng)常遇到要上傳圖片,如果直接上傳,那么會上傳比較大的圖片,導(dǎo)致費流量,刷新時加載圖片時間過長,手機(jī)內(nèi)存占用率高等問題。
一、先來介紹下概念:
圖片的壓縮其實是倆概念,
1、是 “壓” 文件體積變小,但是像素數(shù)不變,長寬尺寸不變,那么質(zhì)量可能下降,
2、是 “縮” 文件的尺寸變小,也就是像素數(shù)減少。長寬尺寸變小,文件體積同樣會減小。
二、解決方法(以上傳頭像為例),先縮再壓:
2.1 矯正圖片方向(照片是有方向的,避免出現(xiàn)“倒立”的情況)
- (UIImage*)fixOrientation:(UIImage*)aImage {
// No-op if the orientation is already correct
if(aImage.imageOrientation==UIImageOrientationUp)
returnaImage;
// We need to calculate the proper transformation to make the image upright.
// We do it in 2 steps: Rotate if Left/Right/Down, and then flip if Mirrored.
CGAffineTransformtransform =CGAffineTransformIdentity;
switch(aImage.imageOrientation) {
caseUIImageOrientationDown:
caseUIImageOrientationDownMirrored:
transform =CGAffineTransformTranslate(transform, aImage.size.width, aImage.size.height);
transform =CGAffineTransformRotate(transform,M_PI);
break;
caseUIImageOrientationLeft:
caseUIImageOrientationLeftMirrored:
transform =CGAffineTransformTranslate(transform, aImage.size.width,0);
transform =CGAffineTransformRotate(transform,M_PI_2);
break;
caseUIImageOrientationRight:
caseUIImageOrientationRightMirrored:
transform =CGAffineTransformTranslate(transform,0, aImage.size.height);
transform =CGAffineTransformRotate(transform, -M_PI_2);
break;
default:
break;
}
switch(aImage.imageOrientation) {
caseUIImageOrientationUpMirrored:
caseUIImageOrientationDownMirrored:
transform =CGAffineTransformTranslate(transform, aImage.size.width,0);
transform =CGAffineTransformScale(transform, -1,1);
break;
caseUIImageOrientationLeftMirrored:
caseUIImageOrientationRightMirrored:
transform =CGAffineTransformTranslate(transform, aImage.size.height,0);
transform =CGAffineTransformScale(transform, -1,1);
break;
default:
break;
}
// Now we draw the underlying CGImage into a new context, applying the transform
// calculated above.
CGContextRefctx =CGBitmapContextCreate(NULL, aImage.size.width, aImage.size.height,
CGImageGetBitsPerComponent(aImage.CGImage),0,
CGImageGetColorSpace(aImage.CGImage),
CGImageGetBitmapInfo(aImage.CGImage));
CGContextConcatCTM(ctx, transform);
switch(aImage.imageOrientation) {
caseUIImageOrientationLeft:
caseUIImageOrientationLeftMirrored:
caseUIImageOrientationRight:
caseUIImageOrientationRightMirrored:
CGContextDrawImage(ctx,CGRectMake(0,0,aImage.size.height,aImage.size.width), aImage.CGImage);
break;
default:
CGContextDrawImage(ctx,CGRectMake(0,0,aImage.size.width,aImage.size.height), aImage.CGImage);
break;
}
CGImageRef cgimg =CGBitmapContextCreateImage(ctx);
UIImage *img = [UIImageimageWithCGImage:cgimg];
CGContextRelease(ctx);
CGImageRelease(cgimg);
return img;
}
2.2 拿到上面矯正過的圖片,縮小圖片尺寸,調(diào)用下面方法傳入newSize,如(200,200):
+ (UIImage*)imageWithImageSimple:(UIImage*)image scaledToSize:(CGSize)newSize
{
UIGraphicsBeginImageContext(newSize);
[imagedrawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
UIImage* newImage =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
2.3 將2.2的圖片再壓,這個方法可以重復(fù)壓
//調(diào)整大小
NSData *imageData =UIImageJPEGRepresentation(newImage,rate);
NSUIntegersizeOrigin = [image Datalength];//多少KB
NSUIntegersizeOriginKB = sizeOrigin /1024;//多少KB
2.4 上傳頭像
調(diào)用后臺接口,把imageData二進(jìn)制數(shù)據(jù)上傳即可
總結(jié):對圖片壓縮處理時,在保證圖片清晰度變化不大時,減小圖片文件大小。方法2.2中的newSize 和 2.3中的rate要以實際效果來設(shè)置,我在自己項目中上傳的頭像最終尺寸是200*200像素,大小為4KB左右。
1、簡單的AF就有上傳的方法
2、上傳文件可以用multipart-formdata格式上傳,具體看后臺接口的配置。這個格式的使用。這是我寫的一篇測試,根據(jù)微博的一個開放接口測試這種格式的使用。
頭像上傳功能。
1、頭像上傳就是需要設(shè)置上傳頭像的按鈕,通過打開軟件。
2、點擊設(shè)置,上傳頭像設(shè)置,進(jìn)行更換,重新上傳一個新的頭想就可以。
標(biāo)題名稱:ios開發(fā)頭像上傳,ios頭像app
標(biāo)題鏈接:http://aaarwkj.com/article26/dsigscg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、定制開發(fā)、建站公司、靜態(tài)網(wǎng)站、網(wǎng)站排名、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)