這篇文章給大家介紹ios中怎么掃描與生成二維碼,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)新互聯(lián)建站是專業(yè)的石門網(wǎng)站建設(shè)公司,石門接單;提供網(wǎng)站建設(shè)、網(wǎng)站制作,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行石門網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
掃描相關(guān)類
二維碼掃描需要獲取攝像頭并讀取照片信息,因此我們需要導(dǎo)入系統(tǒng)的AVFoundation框架,創(chuàng)建視頻會話。我們需要用到一下幾個類:
AVCaptureSession 會話對象。此類作為硬件設(shè)備輸入輸出信息的橋梁,承擔(dān)實(shí)時獲取設(shè)備數(shù)據(jù)的責(zé)任
AVCaptureDeviceInput 設(shè)備輸入類。這個類用來表示輸入數(shù)據(jù)的硬件設(shè)備,配置抽象設(shè)備的port
AVCaptureMetadataOutput 輸出類。這個支持二維碼、條形碼等圖像數(shù)據(jù)的識別
AVCaptureVideoPreviewLayer 圖層類。用來快速呈現(xiàn)攝像頭獲取的原始數(shù)據(jù)
二維碼掃描功能的實(shí)現(xiàn)步驟是創(chuàng)建好會話對象,用來獲取從硬件設(shè)備輸入的數(shù)據(jù),并實(shí)時顯示在界面上。在掃描到相應(yīng)圖像數(shù)據(jù)的時候,通過AVCaptureVideoPreviewLayer類型進(jìn)行返回
掃描二維碼
1.首先倒入框架
#import
2.遵守協(xié)議
3.主要用到的屬性設(shè)置
//捕獲設(shè)備,默認(rèn)后置攝像頭 @property (strong, nonatomic) AVCaptureDevice * device; //輸入設(shè)備 @property (strong, nonatomic) AVCaptureDeviceInput * input; //輸出設(shè)備,需要指定他的輸出類型及掃描范圍 @property (strong, nonatomic) AVCaptureMetadataOutput * output; //AVFoundation框架捕獲類的中心樞紐,協(xié)調(diào)輸入輸出設(shè)備以獲得數(shù)據(jù) @property (strong, nonatomic) AVCaptureSession * session; //展示捕獲圖像的圖層,是CALayer的子類 @property (strong, nonatomic) AVCaptureVideoPreviewLayer * preview;
4.拉起本地相冊二維碼
- (void)chooseButtonClick { if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) { //關(guān)閉掃描 [self stopScan]; //1 彈出系統(tǒng)相冊 UIImagePickerController *pickVC = [[UIImagePickerController alloc]init]; //2 設(shè)置照片來源 /** UIImagePickerControllerSourceTypePhotoLibrary,相冊 UIImagePickerControllerSourceTypeCamera,相機(jī) UIImagePickerControllerSourceTypeSavedPhotosAlbum,照片庫 */ pickVC.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; //3 設(shè)置代理 pickVC.delegate = self; //4.轉(zhuǎn)場動畫 self.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal; [self presentViewController:pickVC animated:YES completion:nil]; } else { [self showAlertViewWithTitle:@"打開失敗" withMessage:@"相冊打開失敗。設(shè)備不支持訪問相冊,請?jiān)谠O(shè)置->隱私->照片中進(jìn)行設(shè)置!"]; } }
生成二維碼
1.二維碼的生成
/** * 2.生成CIFilter(濾鏡)對象 */ CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"]; /** * 3.恢復(fù)濾鏡默認(rèn)設(shè)置 */ [filter setDefaults]; /** * 4.設(shè)置數(shù)據(jù)(通過濾鏡對象的KVC) */ //存放的信息 NSString *info = @"hahahahhahahaha"; //把信息轉(zhuǎn)化為NSData NSData *infoData = [info dataUsingEncoding:NSUTF8StringEncoding]; //濾鏡對象kvc存值 [filter setValue:infoData forKeyPath:@"inputMessage"]; /** * 5.生成二維碼 */ CIImage *outImage = [filter outputImage]; //imageView.image = [UIImage imageWithCIImage:outImage];//不處理圖片模糊,故而調(diào)用下面的信息 self.codeImage.image = [outImage createNonInterpolatedWithSize:150];
2.保存到本地相冊
UIGraphicsBeginImageContext(self.view.bounds.size); [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; //獲取圖片 UIImage * image = UIGraphicsGetImageFromCurrentImageContext(); //關(guān)閉上下文 UIGraphicsEndImageContext(); completion(image); /** * 將圖片保存到本地相冊 */ UIImageWriteToSavedPhotosAlbum(image, self , @selector(saveImage:didFinishSavingWithError:contextInfo:), nil);//保存圖片到照片庫
關(guān)于ios中怎么掃描與生成二維碼就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。