I want to resize and crop a Huge Image (ley say 50 Megabyte JPG image) offscreen because if I loaded to display, iPhone will 'screem' and turn off my apps instantly. i Have try to load the image on Mac/Cocoa and yes it slow my mac down... alot.
Some experiment I have done is by convert the image to non compressed BMP & TIFF formats, where the format is just strigh forward, i could do an interpolation for scaling and read at certain column and row for cropping by using simple C i/o operation. but the file is really huge, Un-compressed TIFF file surpassing hundreds megabyte in size.
I only know TIFF and BMP format because it easy and stright forward basicly only consist
HEADER
...
COLUMN/WIDTH IN PIXEL
ROW/HEIGHT IN PIXEL
R00G00B00 R10G10B10 R20G20B20 ... Rn0Gn0Bn0
R01G01B01 R11G11B11 R21G21B21 ... Rn1Gn1Bn1
R02G02B02 R12G12B12 R22G22B22 ... Rn2Gn2Bn2
... ... ... ... ...
R0nG0nB0n R1nG1nB1n R2nG2nB2n ... RnnGnnBnn
All i need to do is find the offsets for each row and column using I/O Operation, but in compressed format it becoming compex.
Do any of you guys know any API/example/method in cocoa(mac) or cocoatouch(iphone) that do the same thing as above to resize and crop PNG/JPG image offscreen just before it loaded to memory ? It doesn't matter if it drain battery life or took a "reasonable high" hard drive storage
Because there no answer, i will set give a 50 bounty for working example..
Offscreen crop and resize with low memory penalty, i don't care if it drain battery life..
Best Regards,
Ferry Hattawidian
UPDATE:
-(UIImage *)cropImageWithRect
{
UIImage *original = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"bigimage" ofType:@"png"]];
NSLog(@"Width:%f Height:%f", original.size.height,original.size.width);
CGRect cropRect = CGRectMake(1000, 1000, 256, 256);
CGImageRef fImageRef = CGImageCreateWithImageInRect([original CGImage], cropRect);
UIImage *croppedImage = [UIImage imageWithCGImage:fImageRef];
CGImageRelease(fImageRef);
return croppedImage;
}
-(IBAction)onLoadAndCropClick:(id)sender
{
UIImage *croppedImage = [self cropImageWithRect];
imageView.image=croppedImage;
[croppedImage release];
}
100kB penalty.. The only solution so far..
To Make it simple what i mean, I quoted comment from Justin Spahr-Summers (Thank you Justin)
"... I believe the OP was looking for a solution that involved manipulating the image on disk directly...." – Justin Spahr-Summers