0
画像のパスをデータベースに保存して再利用するために、UIIMAGEPICKERが画像をトリミングする方法を教えてもらえますか?UIImagePickerControllerを使用すると、画像をトリミングして、iphoneディレクトリに保存することもできます。
画像のパスをデータベースに保存して再利用するために、UIIMAGEPICKERが画像をトリミングする方法を教えてもらえますか?UIImagePickerControllerを使用すると、画像をトリミングして、iphoneディレクトリに保存することもできます。
これを試してみてください:
- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info{
UIImage *img = [info objectForKey:UIImagePickerView.UIImagePickerControllerEditedImage];
//I think that's how you're supposed to get the image. Fiddle with it.
img.size = CGSizeMake(x, y);
img.scale = 0.75; //scale the image to 75 percent of it's original size.
UIImageWriteToSavedPhotosAlbum (*img, self, @selector(photoSaved), nil);
}
-(void)photoSaved image: (UIImage *) image
didFinishSavingWithError: (NSError *) error
contextInfo: (void *) contextInfo;{
if(!error){
NSLog(@"Photo saved to library!");
} else{
NSLog(@"Saving failed :(");
}
}