I\'m able to upload an image using ASIHTTPRequest. Code is something like this. - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
In my app I am using the camera and photo library to get an UIImage, this UIImage is then scaled down about 20 times its normal size
So i have this code to create a UIImage: UIGraphicsBeginImageContextWithOptions(border.frame.size, YES, 0);
After a user picks a image, it gets saved to their phone and stored like this: // When a user selects a image
My application aims at saving some user photos in a PDF file in order to send the file by email. To produce a small size pdf, I want to compress my images in jpeg. When I draw jpeg to the PDF context,
I am writing a .jpg file to my app\'s Documents directory like this: NSData *img = UIImageJPEGRepresentation(myUIImage, 1.0);
In my iPhone App I am storing image into NSDat开发者_如何学Ca by UIImage *image =imageView.image;
I\'ve read uiimagepickercontroller uiimage memory and more and other relevant ques开发者_JAVA技巧tions, but I can\'t get my head around one thing, and I wonder if there are people around here with exp
On a iPhone app, I need to send a jpg by mail with a maximum size of 300Ko (I don\'t no the maximum size mail.app can have, but it\'s another problem). To do that, I\'m trying to decrease开发者_运维知
I have VB.net windows service and in one of the 开发者_运维知识库functions I am using a XML file which is in the same directory of the application.