国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS掃描二維碼實現手勢拉近拉遠鏡頭

2020-07-26 02:20:26
字體:
來源:轉載
供稿:網友

在做掃碼需求,往往會有放大鏡頭需求。

蘋果提供了AVCaptureConnection中,videoScaleAndCropFactor:縮放裁剪系數,使用該屬性,可以實現拉近拉遠鏡頭。再結合手勢UIPinchGestureRecognizer,就很簡單實現手勢拉近拉遠鏡頭。

手勢代碼

///記錄開始的縮放比例@property(nonatomic,assign)CGFloat beginGestureScale;///最后的縮放比例@property(nonatomic,assign)CGFloat effectiveScale;- (void)cameraInitOver{ if (self.isVideoZoom) {  UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchDetected:)];  pinch.delegate = self;  [self.view addGestureRecognizer:pinch]; }}- (void)pinchDetected:(UIPinchGestureRecognizer*)recogniser{ self.effectiveScale = self.beginGestureScale * recogniser.scale; if (self.effectiveScale < 1.0){  self.effectiveScale = 1.0; } [self.scanObj setVideoScale:self.effectiveScale];}- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{ if ( [gestureRecognizer isKindOfClass:[UIPinchGestureRecognizer class]] ) {  _beginGestureScale = _effectiveScale; } return YES;}

拉近拉遠鏡頭代碼

- (void)setVideoScale:(CGFloat)scale{ [_input.device lockForConfiguration:nil]; AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]]; CGFloat maxScaleAndCropFactor = ([[self.stillImageOutput connectionWithMediaType:AVMediaTypeVideo] videoMaxScaleAndCropFactor])/16; if (scale > maxScaleAndCropFactor)  scale = maxScaleAndCropFactor; CGFloat zoom = scale / videoConnection.videoScaleAndCropFactor; videoConnection.videoScaleAndCropFactor = scale; [_input.device unlockForConfiguration]; CGAffineTransform transform = _videoPreView.transform; [CATransaction begin]; [CATransaction setAnimationDuration:.025];  _videoPreView.transform = CGAffineTransformScale(transform, zoom, zoom); [CATransaction commit];}

有一點需要注意:the videoScaleAndCropFactor property may be set to a value in the range of 1.0 to videoMaxScaleAndCropFactor,videoScaleAndCropFactor這個屬性取值范圍是1.0-videoMaxScaleAndCropFactor,如果你設置超出范圍會崩潰哦!

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 澳门| 大理市| 崇文区| 麟游县| 屏南县| 城步| 浦北县| 汶上县| 财经| 习水县| 丰镇市| 沾化县| 德阳市| 嘉荫县| 合江县| 珠海市| 资中县| 衡南县| 安乡县| 常熟市| 崇信县| 垫江县| 酉阳| 弥勒县| 响水县| 新竹县| 香格里拉县| 湖南省| 淮安市| 乐至县| 吴旗县| 岱山县| 安阳市| 岳池县| 易门县| 临猗县| 新河县| 拉孜县| 仪征市| 登封市| 黄陵县|