0
votes
1answer
20 views
Converting an UIview unto UIimage causing memory leak
Hi guys!!
I'm developing an app for iPhone using a coverFlow view, when the app is building the cards it is using a UIView in order to add labels and other stuff. Then I convert …
0
votes
2answers
37 views
iPhone: How to get a UIImage from a url?
How do you download an image and turn it into a UIImage?
0
votes
1answer
14 views
Drawing onto an animated UIImageView in Cocoa touch
Probably a newbie question, but:
I have a UIImageView that zooms and translates using multitouch. The built in animation feature is very handy, and works great. However, now I w …
34
votes
7answers
3k views
UIImagePickerController, UIImage, Memory and More!
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a U …
0
votes
3answers
128 views
iPhone UIImage overlap render bug.
I've come across a strange render bug on iPhone OS 3.0...
I have two images. One is a non-transparent PNG that is predominately black with a white gradient fading upward.
The sec …
0
votes
1answer
17 views
UIImage Rotation Offset
I have the following code
- (void)ComputeRotationWithRadians:(CGFloat)rad {
CGFloat width = exportImage.size.width;
CGFloat height = exportImage.size.height;
UIGraphic …
0
votes
1answer
20 views
Core data not saving images iphone app
If i do the following it saves fine:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)selectedImage editingInfo:(NSDictionary *)edi …
0
votes
3answers
316 views
iPhone - Corrupt JPEG data for image received over HTTP
I'm getting an image over HTTP, using NSURLConnection, as follows -
NSMutableData *receivedData;
- (void)getImage {
self.receivedData = [[NSMutableData alloc] init];
NSU …
0
votes
3answers
57 views
Unable to assign images to an imageView from an Array, but can assign images to an imageView from a UIImage variable
Hi all,
I have a problem with arrays and passing images between views that I would like some help on!
So the background is that I have:
• RootViewController (which handles my tabl …
0
votes
1answer
341 views
How can I adjust the RGB pixel data of a UIImage on the iPhone?
I want to be able to take a UIImage instance, modify some of its pixel data, and get back a new UIImage instance with that pixel data. I've made some progress with this, but when …
0
votes
4answers
74 views
iPhone custom drawn UITableViewCell , how to load + insert images from the web in a thread?
Hi. I've been drawing custom table cells (using the samples from apple as a base) and have now come to having to do a cell which displays an image from a URL - each cell would have …
0
votes
2answers
407 views
How do I rotate an image on the iPhone?
How do I rotate an image in iPhone programming?
0
votes
0answers
2 views
iPhone SDK: using CGImageCreate with an indexedColorSpace adds map to each pixel row
I am using a color map lookup table in my indexed color space. When I use CGImageCreate to create the CGImage, then create a UIImage, I get an extra COLUMN of pixels in the first 3 …
0
votes
3answers
466 views
UIImage from bytes held in NSString
Hi all,
I am trying to create a UIImage from a byte array that is actually held within a NSString.
Can someone please tell me how I can do that?
Here is what I was thinking of d …
0
votes
3answers
56 views
Exif and iPhone files
Im using a library for extracting EXIF data from google code.
I assume with iPhone OS 3 that you can use UIImagepicker to do it.
I just want to be able to extract the f-Stop, Shut …
