0
votes
1answer
19 views

Uiimage to Base64 and back

I tri to convert NSData to Base64 to save an UIImage in the database, in a blob, that is located at a remote server. To parse: NSData *imagenData = UIImagePNGRepresentation(self.imagen.image); ...
0
votes
3answers
38 views

Downloading images from server and saving into Database

I have to download images and save it into my local database. So I am storing the images in NSData and than inserting it into local database. But there are atleast 50 images coming from the server so ...
0
votes
2answers
47 views

UIImage and BLOB

I need to save an image in the database, that it is on a remote server. For that, i define a BLOB. NSData *imagenData = UIImagePNGRepresentation(self.imagen.image); My problem: when i receive the ...
0
votes
1answer
16 views

Writing orignal image with exif to Document Directory folder from ALAsset object

I want to save alasset imagearray directly to document directory with EXIF i tried PNG conversion, jpeg conversion nothing worked It just creating new image either with jpg or png (loss of exif) I ...
0
votes
1answer
49 views

Compress Large UIImage

so what im doing is compressing an image repeatedly until it fits within a size frame. It it takes to many attempts, give up and later we tell the user the image is to large. My issue is that after ...
0
votes
1answer
53 views

dataWithContentsOfURL and imageWithData take 84% of the whole loading time

these two lines took 40% and 42% (together 84%) of the whole loading time of my app. I tested it with Instruments. NSData *storeImageData = [NSData dataWithContentsOfURL:storeImageURL]; //40% whole ...
0
votes
2answers
50 views

UIImage with NSData initWithData is nil

The following code does not seem to load an image. uiTabBarItem = [[UITabBarItem alloc] init]; NSData *datatmp = [NSData dataWithContentsOfFile:@"newsicon.png"]; UIImage *tmp = [[UIImage alloc] ...
0
votes
0answers
87 views

Save UIImage -> NSData to Core Data binary

I want to store an image I picked with the UIImagePickerController from the camera to CoreData. The column is a binary type with "Allows External Storage". The method I want to save: ...
0
votes
0answers
10 views

how to create raw NSData for uiimage

I want create a blank white UIImage from NSData.Is there a method to create raw NSData (PNG data size)for UIimage to create with imageWithData function. Thanks,Guy.
2
votes
2answers
101 views

Retrive image from nsdata NSInvalidArgumentException', reason: '-[UIImage length]

i add image in NSMutableArray than i convert it in NSData and agaun i store that image in other NSMutableArray. But when i convert back to image that give me Error my Code is NSData *Puzzleimage; ...
0
votes
1answer
137 views

UIImage to raw NSData / avoid compression

I have my own image downloader class, it holds a queue and downloads images one (or a certain amount) at a time, writes them to the cache folder and retrieves them from the cache folder when ...
0
votes
0answers
77 views

UIImageJpegRepresentation not working with subdataWithRange

I have this code to split a data object into an array of smaller objects, which works fine for the data I'm using here: NSString *filePath = [[NSBundle mainBundle] pathForResource:@"image" ...
3
votes
1answer
78 views

Inaccurate NSData size given in bytes

I took a 13.3MB image and added it to XCode. I'm aware that when compiling, XCode performs some tricks to bring down the file size. I did this, to test how big the image now was, after being converted ...
2
votes
2answers
57 views

Add UIImage to NSMutableArray

I have a problem with a piece of code that should add images to a NSMutableArray. For some reason the images are not added (the count of the array stays at 0). Can someone please tell me what I'm ...
1
vote
1answer
97 views

How to Save NSData to A Location Within my App?

Hi I'm very new to iOS programming (it's been literally 2 weeks) and I have this issue: In my app I take pictures and put them in a queue for upload, I still haven't implemented the upload part but ...
0
votes
0answers
17 views

NSData Did start load? - Show activity indicator while loading

I am loading a image from my server with the following code: NSURL * imageURL = [NSURL URLWithString:@"http://server.com/image.png"]; NSData * imageData = [NSData ...
0
votes
1answer
182 views

UIImagePNGRepresentation(UIImage) throwing libpng error : No IDATs written into file

I am creating an application in which i save the thumbnails from the browser. Everything is working fine till i tend to move the directory containing this file into the other directory. It give this ...
1
vote
2answers
600 views

Convert UIImage to NSData without using UIImagePngrepresentation or UIImageJpegRepresentation

I Need to convert UIImage to NSData but without using UIImagePngRepresentation or UIImageJpegRepresentation, for images from photolib i can use assetlib method as mentioned here Using ALAssetsLibrary ...
0
votes
1answer
143 views

UIImage from NSData in UITableView - performance issue

I am storing images from Photos Album in my app documents directory as NSData and than displaying them in UITableView. I have problem with performance. It takes a good few seconds to save image into ...
1
vote
3answers
87 views

UIImage AsPNG and AsJPEG fails

I'm using MonoTouch and I have a UIImage (displayed in a UIImageView and it looks good) and I'm trying to convert it to NSData, but AsJPEG and AsPNG returns null. What can be the problem? My code ...
1
vote
1answer
49 views

Two Methods of Getting an Image from URL: The Differences?

What are the main differences between the following two methods of fetching a UIImage from a URL? I recently switched from Method 1 to Method 2 in my app and seemed to experience a drastic increase ...
0
votes
2answers
283 views

NSData length of an Image compressed with UIImageJPEGRepresentation()

We know the image can be compressed with the Method UIImageJPEGRepresentation() as in the following codes. NSData *imgData = UIImageJPEGRepresentation(imageResized, 0.5); ...
0
votes
3answers
136 views

NSData loading UIImage

How to tell if the NSData returns nil if theres no internet connection or if the image is no longer available ?? this is the code: NSString *str = @"http://p.twimg.com/A76-I-PCYAA75YH.jpg";//URL is ...
-1
votes
1answer
85 views

cached NSData object can't be used after retrieval

I am caching an NSData object containing image data retrieved from the web. The image displays correctly before caching. When I retrieve the data object from the cache, the data can no longer be used ...
0
votes
4answers
166 views

how to attach two images to mfmailcomposer view controller in ios

How to add web view data and image view data to Mfmailcomposer view controller in ios. for sending mail to others.
0
votes
2answers
147 views

How to convert NSData in to UIImage?

I have successfully converted UIImage in to NSData and sending it to a server using SBJson web service. I am using this code: img=mainImage.image; NSData *imgdata=UIImagePNGRepresentation(img); ...
0
votes
1answer
47 views

How to save uiimage in a directory on a given nsurl?

I have fetched UIImage from photos library in ipad using UIImagePickerController. Now I want to save that image in a directory that is associated with my app and contains already added images. I have ...
0
votes
0answers
44 views

Cast when using ABPersonCopyImageDataWithFormat

Does anybody knows why I'm having this error when using the code below? Cast of C pointer type 'CFDataRef' (aka 'const struct __CFData *') to Objective-C pointer type 'NSData *' requires a ...
0
votes
1answer
283 views

UIImage > NSData > NSString fail

I know this question has been questioned many times, but my problem is a little different. I have an image (shared.image) and I want to upload the data to a server. This is the code (the img: bit is ...
1
vote
1answer
120 views

How to save a UIImageView to a CoreData Database

What is the SIMPLEST way to save a UIImageView to a CoreData Database. I have tried this: Save: UIImage *image = imageView.image; NSData *imageData = UIImagePNGRepresentation(image); ...
0
votes
2answers
397 views

iOS - Download file only if modified (NSURL & NSData)

I am downloading a bunch of image files from a server, and I want to ensure that they are downloaded only if they are newer. This method currently downloads the images just fine. However, I don't want ...
0
votes
1answer
87 views

iOS - Can't Display Downloaded Image

I am downloaded images using the below code, but whenever I try to display them nothing shows up. I have tested the downloading of the images to my desktop from the app (in simulator) and all the ...
0
votes
2answers
176 views

Objective-C category “unrecognized selector” error

I have made a UIImage Objective C catagory to house this function: #import "UIImage+fixOrientation.h" @implementation UIImage (fixOrientation) - (UIImage *)fixOrientation { // No-op if the ...
2
votes
1answer
212 views

Iphone Encryption on UIImage - kCCBufferTooSmall error on AES 256 encryption

I have seen this thread, and the encryption techniques mentioned there is working well. But not in all cases. Requirement: Simple, take one image, encrypt it, and store the encrypted data. Later, ...
0
votes
1answer
267 views

Memory Leak/Crash converting image data

The following code crashes after ~200 calls. I've tried GC after each call and a MemoryWarning block with another GC, but it still crashes. public byte[] ConvertImage(string base64String) { try ...
-1
votes
4answers
204 views

size of UIImage stored as NSData?

Am i able to get the size (CGSize) of a UIImage stored as NSData without using [UIImage imageWithContentsOfFile:];? Being able to do this would make my code run faster.
0
votes
0answers
63 views

Displaying image from Core Data results in App Crash

I've spent hours trying to figure this out! I'm a newbie to xcode but have been making good progress but now stuck on this part. I believe I am saving my image to the binary field in core data. ...
2
votes
2answers
175 views

Get lower quality UIImage from NSData?

I have an image compressed into NSData using JPEG compression. I access it with [UIImage imageWithContentsOfFile:]. With larger images though, this takes a few seconds. Is there a faster way to load ...
0
votes
2answers
250 views

Is it possible to create an ALAsset object from NSData or other image type (CFImageRef, CIImage, UIImage)? [closed]

Is it possible to create an ALAsset object from NSData or other image type (CFImageRef, CIImage, UIImage)? I don't want to save all of my applications images to the camera roll, but I want to be ...
1
vote
2answers
830 views

NSData dataWithContentsOfURL slow

I have some performance problem with NSData dataWithContentsOfURL... NSURL *url = [NSURL URLWithString:Imagepath]; NSData *data = [NSData dataWithContentsOfURL:url]; UIImage *img=[UIImage ...
0
votes
2answers
176 views

Cache Image From URL working, but returns blank image?

I have two methods, first checks if I've already downloaded the image, and if not retrieves the image from a URL and caches it to my docs directory in my app. If it has been, it simply retrieves it, ...
0
votes
2answers
228 views

Unable to show thumbnail left of Table Cell in iOS

I have seen several posts on this here at SO but those solutions don't seem to work for me. Perhaps it's because I'm getting the image URL via JSON. All other text fields in JSON are coming through ...
0
votes
1answer
295 views

How to upload image + xml into web server using SOAP request from iphone applicaiton

I am implementing an iPad application, In my application I need to get some information and profile pic from user and need to upload that information to a web server using SOAP request. I am done with ...
0
votes
3answers
780 views

Store images in sqlite or just a reference to it?

I have made couple of apps using coredata and I was storing images in sqlite, but somewhere i found that it is bad. I've searched the net but all I've found is this suggestion: image size < 100kb ...
5
votes
4answers
675 views

Move data/images between two iOS apps using custom URL handler

After googling around and searching SO for a while, I stil couldn't find an answer - I've wondered, How could I transfer data between two of my apps using custom URL handlers? Specifically images or ...
0
votes
1answer
320 views

Objective C , extract image from URL

the url is https://api.url2png.com/v3/P4DE5D1C99D8EF/7bbb6e0d1b74fb0ae1d4f18b06320096/400x400/abc.com I want to get above image into to a UIImage. I tried this, NSURL *urlString = [NSURL ...
1
vote
1answer
375 views

How can i get original nsdata of uiimage?

In my app, user can select a pic from album or camera where i can get uiimage representation. Since the album may have pic from web, the file type is not only jpg. Then i need to sent it to the server ...
0
votes
1answer
65 views

How to pass UIIImage in unsigned byte format in iPhone

I am making one application, in which user selects one image from photo library and then that image need to be passed on web server using soapy, format for image passing in soap in unsigned byte, i ...
3
votes
1answer
478 views

Converting UIImage to NSData with UIImageJPEGRepresentaion() and saving it to a file increases the file size in bytes

I have a requirement in which the user can select an image from camera roll and my application needs to optimize the image and upload it to a server. I am using ALAssets library and a custom picker ...
0
votes
0answers
131 views

Image file Base 64 Decode Darkened

When I decode a Base 64 encode image File the result is darkened. I don't understand why... anybody have an idea ? Thank you !! =)

1 2 3