CGImageSourceCreateWithURL return 始终为零

CGImageSourceCreateWithURL return always nil

CGImageSourceCreateWithURL return 始终为零。我正在传递 [NSURL fileURLWithPath:getImagePath]。我仔细检查了我正在通过的 url 图像是否存在。请找出下面的代码。

NSURL *imageURL = [self getImageAtTime:i withTitle:@"gifImage"];

if (!imageURL) {
    NSLog(@"imageURL is null");
    return;
}

CGImageSourceRef source = CGImageSourceCreateWithURL((__bridge CFURLRef)imageURL, NULL);

if (source == NULL) {
    NSLog(@"Source is NULL");
}

CGImageDestinationAddImageFromSource(destination, source, i+1, (__bridge CFDictionaryRef)frameProperties);

在创建 CGImageSourceRef source = CGImageSourceCreateWithURL((__bridge CFURLRef)imageURL, NULL); 时,我只是忘记指定图像的 属性。下面是 CGImageSourceCreateWithURL

的工作代码
            NSURL *imageURL = [self getImageAtTime:i withTitle:@"gifImage"];

            if (!imageURL) {
                NSLog(@"imageURL is null");
                return;
            }

            CGImageSourceRef source = CGImageSourceCreateWithURL((__bridge CFURLRef)imageURL, NULL);

            if (source == NULL) {
                NSLog(@"Source is NULL");
            }

            //get all the metadata in the image
            NSDictionary *metadata = (__bridge NSDictionary *)CGImageSourceCopyPropertiesAtIndex(source, 0, NULL);

            //make the metadata dictionary mutable so we can add properties to it
            NSMutableDictionary *metadataAsMutable = [metadata mutableCopy];

            NSMutableDictionary *EXIFDictionary = [[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyExifDictionary]mutableCopy];
            NSMutableDictionary *GPSDictionary = [[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyGPSDictionary]mutableCopy];
            NSMutableDictionary *RAWDictionary = [[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyRawDictionary]mutableCopy];
            NSMutableDictionary *GIFDictionary = [[metadataAsMutable objectForKey:(NSString *)kCGImagePropertyGIFDictionary]mutableCopy];

            if(!EXIFDictionary)
                EXIFDictionary = [[NSMutableDictionary dictionary] init];

            if(!GPSDictionary)
                GPSDictionary = [[NSMutableDictionary dictionary] init];

            if(!RAWDictionary)
                RAWDictionary = [[NSMutableDictionary dictionary] init];

            if(!GIFDictionary)
                GIFDictionary = [[NSMutableDictionary dictionary] init];


            [GPSDictionary setObject:@"camera coord Latitude"
                              forKey:(NSString*)kCGImagePropertyGPSLatitude];
            [GPSDictionary setObject:@"camera coord Longitude"
                              forKey:(NSString*)kCGImagePropertyGPSLongitude];
            [GPSDictionary setObject:@"camera GPS Date Stamp"
                              forKey:(NSString*)kCGImagePropertyGPSDateStamp];
            [GPSDictionary setObject:@"camera direction (heading) in degrees"
                              forKey:(NSString*)kCGImagePropertyGPSImgDirection];

            [GPSDictionary setObject:@"subject coord Latitude"
                              forKey:(NSString*)kCGImagePropertyGPSDestLatitude];
            [GPSDictionary setObject:@"subject coord Longitude"
                              forKey:(NSString*)kCGImagePropertyGPSDestLongitude];

            [EXIFDictionary setObject:@"[S.D.] kCGImagePropertyExifUserComment"
                               forKey:(NSString *)kCGImagePropertyExifUserComment];

            [EXIFDictionary setValue:@"69 m" forKey:(NSString *)kCGImagePropertyExifSubjectDistance];

            [GIFDictionary setObject:[NSNumber numberWithFloat:duration/frameCount] forKey:(NSString *)kCGImagePropertyGIFDelayTime];


            //Add the modified Data back into the image’s metadata
            [metadataAsMutable setObject:EXIFDictionary forKey:(NSString *)kCGImagePropertyExifDictionary];
            [metadataAsMutable setObject:GPSDictionary forKey:(NSString *)kCGImagePropertyGPSDictionary];
            [metadataAsMutable setObject:RAWDictionary forKey:(NSString *)kCGImagePropertyRawDictionary];
            [metadataAsMutable setObject:GIFDictionary forKey:(NSString *)kCGImagePropertyGIFDictionary];

            CGImageDestinationAddImageFromSource(destination, source, 0, (__bridge CFDictionaryRef)metadataAsMutable);

            //            CGImageDestinationAddImage(destination, image.CGImage, (__bridge CFDictionaryRef)frameProperties);

            CFRelease(source);