画像を好きなサイズにリサイズしてみましょう!
※リサイズ後の画像を表示する UIImage を生成しておく
UIImage* destinationImage = [[UIImage alloc] init];
※リサイズの大きさを指定
UIGraphicsBeginImageContext(CGSizeMake(480, 640));
※それを描画する
[image4 drawInRect:CGRectMake(0, 0, 480, 640)];
※その画像をbitmapからuiimageに表示する
destinationImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();