我怎麼會去以同樣方式的Photo Booth在Mac或iPad上,從X光熱效應的變化而改變的攝像效果的X射線或熱效應?我已經搜遍了,根本找不到任何東西。我想使用X射線或熱效應。在iPhone上使用
這是我一直在嘗試,但我不知道我在做什麼。
UIImagePickerController *Camera_Picker = [[UIImagePickerController alloc] init];
Camera_Picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentModalViewController:Camera_Picker animated:YES];
Camera_Picker.cameraViewTransform = CGAffineTransformInvert(CGAffineTransformMake(1, 1, 1, 1, 1, 1));
我一直在改變數字,但沒有任何作品正確它只是把屏幕變成白色。當你在Photoshop中反轉某些東西時,它會給人一種溫暖的感覺,那就是我的思維過程。
「這是我一直在努力,但我不知道我在做什麼」 - 不填預期答案的海報有信心... –
此處開始:http://developer.apple.com/library /mac/#documentation/GraphicsImaging/Conceptual/CoreImaging/ci_intro/ci_intro.html查看Core Image過濾器的列表。其中一個可能做你想做的。 – NSResponder