一种简便的ios图片加密方法-对图片进行base64编码
生活随笔
收集整理的這篇文章主要介紹了
一种简便的ios图片加密方法-对图片进行base64编码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近項目中需要對圖片的安全做處理,保證用戶(即使是越獄用戶)也不能查看到從服務器中下載下來的圖片。
折騰了多種方法,發現還是使用base64對儲存的文件進行一次編碼最方便,編碼之后,用戶打開圖片時將顯示為全黑色
編碼方法:
NSString *path1 = [NSHomeDirectory() stringByAppendingFormat:@"/Documents/bronze/download/img_0_0_0.png"];//文件路徑轉換為dataNSData *imageData0 = [NSData dataWithContentsOfFile:path1];//對data進行base64編碼NSData *imageData = [GTMBase64 encodeData:imageData0];[imageData writeToFile:path1 atomically:YES];解碼顯示:
NSString *imagePath = [NSHomeDirectory() stringByAppendingFormat:@"/Documents/bronze/download/img_0_0_0.png"];NSData *data = [NSData dataWithContentsOfFile:imagePath];NSData *data1 = [GTMBase64 decodeData:data];UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 20, 300, 400)];imageView.image = [UIImage imageWithData:data1];imageView.backgroundColor = [UIColor redColor];[self.view addSubview:imageView];?
?
?
?
參考:http://blog.csdn.net/yshen_dublin/article/details/4416209
總結
以上是生活随笔為你收集整理的一种简便的ios图片加密方法-对图片进行base64编码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 要活多久才能赚回你交的养老金
- 下一篇: GNU make manual 翻译(