2012-07-30 62 views
1

我已創建自定義相機重疊視圖從這個博客AROVerlayViewController這一切都工作正常,但捕捉圖像的圖像會同時在ImageView的說明被streched first custom camera image image view that changed in re-size mode在這裏你可以看到的圖像將是後,我有一個問題拉伸它不顯示原始捕獲的圖像。以及如何在捕捉圖像時添加位置。對於圖像裁剪我已使用此代碼from here如何從iPhone中裁剪(調整大小)捕捉圖像並從相冊中選擇?

+0

你是如何得到選取器選擇的圖像?或者你只是使用屏幕上當前可見的區域? – lostInTransit 2012-07-30 09:46:36

+0

@lostInTransit thnx 4 rply.but對不起,我已經從(相冊)選取器圖像選擇完美檢查新問題。 – 2012-07-30 09:53:48

+0

@lostInTransit任何人都可以幫助我。所有用戶 – 2012-07-31 05:48:38

回答

1

因此,它是您正在拍攝照片的相機(即使其具有定製覆蓋視圖的相機)。然後獲取高分辨率圖像,當您的應用程序擊中UIImagePickerControllerDelegate方法時,您需要獲取實際圖像(未編輯)。

特別是在這種方法

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 

字典信息有鍵UIImagePickerControllerOriginalImage的值是你在找什麼。

+0

我無法訪問這個方法我已經創建了'AVCaptureSesstion'和我從這個代碼靜止圖像' - (void)btnCapture:(id)sender {[self captureManager] captureStillImage]; [[CaptureManager captureSession] stopRunning]; UIImage * image = [[self captureManager] stillImage]; // image = [image scaleProportionalToSize:CGSizeMake(310,390)]; open.image = image; [open.imageView setImage:[[self captureManager] stillImage]]; self.navigationItem.title = @「Back」; [self.navigationController pushViewController:open animated:YES]; }' – 2012-08-01 05:03:57

相關問題