Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID

Badges

Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

SundialSoft

About

Username
SundialSoft
Joined
Visits
426
Last Active
Roles
Registered Users
Points
47
Badges
6
Posts
273
Location
Scotland
Website
http://www.sundialsoft.co.uk
Occupation
Indie Developer
Title
Registered Member
  • Just Started Developing... HELP?!

    Just for completeness here's how iOS decodes a GIF
    CGImageSourceRef src = CGImageSourceCreateWithData((__bridge_retained CFDataRef)GIFData, NULL);
    if (src)
    {
    size_t l = CGImageSourceGetCount(src);
    GIF_framesData = [NSMutableArray arrayWithCapacity:l];
    GIF_delayData = [NSMutableArray arrayWithCapacity:l];
    for (size_t i = 0; i < l; i++)
    {
    CGImageRef img = CGImageSourceCreateImageAtIndex(src, i, NULL);

    CFDictionaryRef properties = CGImageSourceCopyPropertiesAtIndex(src, i, NULL);
    CFDictionaryRef gifProperties = (CFDictionaryRef)CFDictionaryGetValue(properties, kCGImagePropertyGIFDictionary);
    CFStringRef numDelay = (CFStringRef)CFDictionaryGetValue(gifProperties, kCGImagePropertyGIFDelayTime);
    NSString *delayStr = (__bridge_transfer NSString *)numDelay;
    NSLog(@"gifDelay %@",delayStr);
    [GIF_delayData addObject:delayStr];
    if (img)
    {
    [GIF_framesData addObject:[UIImage imageWithCGImage:img]];
    CGImageRelease(img);
    }
    }
    CFRelease(src);
    }
    else
    Duncan C