uiimage

iPhone UIImagePickerController didFinishPickingImage: UIImage transfer between view controllers?

Hello, In my app, I have a UIImagePickerController. When a image is selected, my view controller needs to get the image and pass it to another view controller, which is pushed onto self.navigationController. But I am always getting SEGFAULTS or nil arguments, and things like that. I would appreciate it if you could tell me what is wrong ...

Create a UIImage from two other UIImages on the iPhone

Hi, I'm trying to write an animation on the iPhone, without much success, getting crashes and nothing seems to work. What I wanna do appears simple, create a UIImage, and draw part of another UIImage into it, I got a bit confused with the context and layers and stuff. Could someone please explain how to write something like that (effi...

UIImage and UIImageView problem

set a UIImageView.image property to a UIImage is unable add the image to the view,however if i set the imageview frame property,it works.can anyone tell me how it's happen? and what will happen when i apply the UIImage instance method[drawInRect:] redraw the image frame which is larger than the view frame?i have tried but nothing happen,...

Take picture with iPhone API and transfer it to a server

Hi, I have written an cocoa application to take a picture on the iPhone. I need to transfer the images taken to somewhere besides the iPhone namely another server. Does anyone know how I can accomplish this? Thanks, Joe ...

How to create hotlinks on image?

I'm not sure what the iPhone version of this is called but in HTML it is an image map. Certain areas of the map route you to different pages. I'd like to use an image, mostly in a scrollview, that I can have certain areas perform different actions. For example, Chemical Touch, http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoft...

Why do I get poor performance when rendering different images with UIImage on iPhone

Hi, I'm using UIImage to render a game map from 32x32 blocks. The code is as follows for( int x = 0; x < rwidth; ++x) { for(int y = 0; y < rheight; ++y) { int bindex = [current_map GetTileIndex:x :y]; CGPoint p; p.x = x * tile_size_x; p.y = y * tile_size_x; [img_list[bindex] drawAtPoint:p]; } } This ends up rendering abo...

iPhone camera pics come up rotated -- CGAffineTransformInvert: singular matrix.

I'm getting the UIImage from the image picker and putting it into a UIImageView. It works fine for regular images, but for images taken with the iphone camera, they sometimes come up rotated 90 degrees. When accessing one of those images later (it has already been saved to disk) I noticed the above error. Any ideas? I assume it has som...

iphone:UIImage and UIImageView

Hello Friends can in some way join many UIImages together at different locations to form a big UIImageView object... would this thing be possible in any way ...

UITableViewCell with image on the right?

Is there a way to set the UITableViewCell.image to display on the right hand side of the cell instead of the left? Or will I need to add a separate UIImageView on the right side of the cell layout? ...

iPhone Memory Management with UIImage

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage: (UIImage *)image editingInfo:(NSDictionary *)editingInfo { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [self.pickerTrigger setImage:image]; [self.button setTitle:@" " forState:UIControlStateNormal]; [self.button setTitle:@" " forState:...

jpg or png for UIImage -- which is more efficient?

I am grabbing an image from the camera roll and then using it for a while as well as save it to disk as a PNG on the iPhone. I am getting the odd crash, presumably due to out of memory. Does it make a difference if I save it as PNG or JPG (assuming I choose note to degrade the quality in the JPG case)? Specifically: is more memory t...

Overlaying a UIImage with a color?

I'm attempting to add a black overlay over some current UIImage's (which are white). I've been trying to use: [[UIColor blackColor] set]; [image drawAtPoint:CGPointMake(0, 0) blendMode:kCGBlendModeOverlay alpha:1.0]; But it's not working, and I'm pretty sure set isn't supposed to be there. ...

How to Get UIImage from a 'Base64String' format raw image data, on iPhone?

Hello, In my application, I receive the image data from the server in a XML file. This data is of an image( .jpeg or .png or .tiff etc) which the server, converts into 'Base64String' format bytes to send to my application through the XML file. At my application side, the application stores these bytes, in the form of 'NSData' into a dat...

Zoom Loupe on UIImageView

Does anyone know of a way to implement the zoom loupe functionality of a UITextField on the iphone in a UIImage view? Part of the app I'm building allows a user to draw a line on a UIImage, a process that might involve precision positioning of the points. In order to help the user, I want to provide the zoom loupe as seen when positioni...

Memory leaks in image creation function

Hi, I am currently working on an iPhone game, and need to create some animation on the fly. The animation is based on several images, and as the range of image combinations is too large and it is impossible to pre-create all of sequences, I'd like to be able to recalculate a set of images every time the situation changes. The function ...

Detecting iPhone camera orientation

I'm getting inconsistent results depending on whether I get the image directly from the camera in the callback or choosing it from the camera roll. In the UIImagePickerControllerDelegate callback method, the UIImage.imageOrientation comes up as UIImageOrientationRight no matter how the photo is taken. When reading it off the Camera Ro...

UIImage Rotation custom degrees

I have been using the code in this sample to assist and this works well. http://www.platinumball.net/blog/2009/03/30/iphone-uiimage-rotation-and-mirroring/ I cannot workout how to rotate by a custom amount of degrees between 0 & 360.... ...

Baffled at trying to set cell.image using UIImage: imageNamed:

I created a plist that contains an NSDictionary structure. The key is a label (which I use to populate tableview cell.text) and the value is a file name that I want to use to 'dynamically' populate cell.image. The exact png filenames are loaded into the project. To make things easier (so I thought), I load the plist into an NSDictionary...

How do I read an image from a base64 encoded string in Objective C?

I'm getting a XML containing image which is base64 encoded.I've to decode that & need to display a image.Any suggestions............. ...

How do I rotate an image on the iPhone?

How do I rotate an image in iPhone programming? ...