У меня была такая же проблема. Рисование изображения в UIGraphicsImageContext решает проблему:
CGRect rect = CGRectMake(0,0,100,100);
UIImage *image = ((put here your image));
UIGraphicsBeginImageContext(rect.size);
[image drawInRect:rect];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(
result, self, @selector(image:didFinishSavingWithError:contextInfo:),nil);