CIImage을 만들 수는 없지만, 어떤 이유로, 아무리 내가 노력하는 방법,이 코드 쇼의 끝에 CIImage내가 여기 잘못 뭘하는지 이해할 수 없다
UIImage *origImage = [[UIImage alloc] init];
origImage = [UIImage imageNamed:imageName];
imageName = [imageName substringToIndex:[imageName length]-4];
NSURL *path1 = [[NSBundle mainBundle] URLForResource:imageName withExtension:@"jpg"];
NSLog(@"the path is %@", path1);
NSLog(@"the inputImage is %@", imageName);
CIImage *inputImage = [[CIImage alloc] initWithCGImage:origImage.CGImage];
CIImage *inputImage1 = [[CIImage alloc] initWithImage:_originalImage];
CIImage *inputA = [[CIImage alloc] initWithContentsOfURL:path1];
CIImage *empty = [[CIImage alloc] initWithImage:origImage];
중단 점을 만들 수 없습니다 UIImage, 문자열 및 url 등이 있습니다. 모두 예상대로입니다. 헤더에는 CoreImage.h 및 UIKit이 포함됩니다. _originalImage는 이전에 할당 된 UIImage 속성입니다.
며칠 동안이 문제에 익숙하지 않았으니 어떤 도움을 받았습니까? 감사.
정확히 무엇을 얻고 있습니까? CIImages에서 Null 참조? – Almo
예 - 모든 CIImages는 nil입니다. –
CoreImage 헤더가 손상되었을 수 있다고 생각했지만 다른 프로젝트에서 작동합니다! –