The basic image handling class of Cocoa-Touch on iOS.

learn more… | top users | synonyms

470
votes
6answers
91k views

UIImagePickerController, UIImage, Memory and More? [closed]

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 UIImageView). Here is ...
72
votes
5answers
61k views

The simplest way to resize an UIImage?

In my iPhone app, I take a picture with the camera, then I want to resize it to 290*390 pixels. I was using this method to resize the image : UIImage *newImage = [image ...
57
votes
3answers
21k views

How to capture UIView to UIImage without loss of quality on retina display

My code works fine for normal devices but creates blurry images on retina devices. Does anybody know a solution for my issue? + (UIImage *) imageWithView:(UIView *)view { ...
56
votes
10answers
65k views

How to Rotate a UIImage 90 degrees?

I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
51
votes
3answers
23k views

Tricks for improving iPhone UITableView scrolling performance?

I have a uitableview that loads fairly large images in each cell and the cell heights vary depending on the size of the image. Scrolling performance is decent, but can sometimes be jerky. I found ...
51
votes
2answers
24k views

How do I export UIImage array as a movie?

I have a serious problem: I have an array with several UIImage objects. What I now want to do, is create movie from those images. But I don't have any idea how to do so. I hope someone can help me or ...
50
votes
9answers
39k views

How can i take an UIImage and give it a black border?

How can I set the border of a UIImage? Thanks in advance
35
votes
7answers
11k views

iPhone, “More than maximum 5 filtered album lists trying to register. This will fail.” Error

When I try to read an image from the photo library I get the error, "More than maximum 5 filtered album lists trying to register. This will fail." The image is not read. Any idea how to fix this?
32
votes
2answers
11k views

How to create a colored 1x1 UIImage on the iPhone dynamically?

I would like to create a 1x1 UIImage dynamically based on a UIColor. I suspect this can quickly be done with Quartz2d, and I'm poring over the documentation trying to get a grasp of the fundamentals. ...
28
votes
2answers
10k views

How to Convert UIView to PDF within iOS?

There are a lot of resources about how to display a PDF in an App's UIView. What I am working on now is to create a PDF from UIViews. For example, I have a UIView, with subviews like Textviews, ...
26
votes
3answers
8k views

Retina display and [UIImage initWithData]

I need to initialise images from raw data downloaded from a server which delivers the correct size of image based on the type of iPhone client. I know that I should be setting the scale value to be ...
25
votes
4answers
38k views

Can I load a UIImage from a URL?

I have a URL for an image (got it from UIImagePickerController) but I no longer have the image in memory (the URL was saved from a previous run of the app). Can I reload the UIImage from the URL ...
25
votes
3answers
16k views

Resizing UIimages pulled from the Camera also ROTATES the UIimage?

I am getting UIimages from the camera and assigning them to UIImageViews to be displayed. When I do this the camera gives me a 1200 x 1600 pixel image which I then assign to a UIImageView in my ...
23
votes
6answers
8k views

How to tint a transparent PNG image in iPhone?

I know it's possible to tint a rectangular image by drawing a CGContextFillRect over it and setting the blend mode. However, I can't figure out how to do a tint on a transparent image such as an icon. ...
23
votes
4answers
7k views

Is there a nine-patch loader for iPhone?

Android has a nice way of defining stretchable images called a nine-patch. See these docs for a description of the concept. The idea is to surround a png image with a 1-pixel border where you can ...
22
votes
4answers
36k views

How to compress/resize image on iPhone OS SDK before uploading to a server?

I'm currently uploading an image to a server using Imgur on iOS with the following code: NSData* imageData = UIImagePNGRepresentation(image); NSArray* paths = ...
22
votes
5answers
17k views

iphone - how get the height and width of uiimage

From the URL Image in Mail I'm adding image to mail view. It will show full image. But I want to calculate, proportionally change the height and width of the image. How can I get the height and ...
22
votes
3answers
14k views

How to Mask an UIImageView

I am trying to mask an image something like this: I found this tutorial but it did not mention where I can find Image.png or mask.png! TUTORIAL Would you please help me? EDIT: - (void) ...
22
votes
3answers
10k views

UIImage -> CGImageRef

I'm building an Iphone app that needs to convert a UIImage to a CGImageRef. I have no idea how to do this and would love some help. I have no background in working with images... :)
22
votes
1answer
9k views

Get underlying NSData* from UIImage

I can create UIImage from NSData using [UIImage imageWithdata:] or [UIImage initWithData] method. I wonder if I can get the NSData* back from an existing UIImage* ? something on the line of ...
22
votes
6answers
15k views

How Do I Take a Screen Shot of a UIView?

I am wondering how my iPhone app can take a screen shot of a specific UIView as a UIImage. I tried this code but all I get is a blank image. UIGraphicsBeginImageContext(CGSizeMake(320,480)); ...
22
votes
1answer
13k views

What's the default size for the UIImage in a UITableViewCell?

I want to put a UIImage in the left side of each row in a UITableView. This is pretty standard, and is supported directly by UIKit. But putting in a (large) image causes all kinds of wonkiness, so ...
21
votes
4answers
22k views

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?
21
votes
5answers
7k views

Creating a UIImage from a UIColor to use as a background image for UIButton

I'm creating a colored image like this: CGRect rect = CGRectMake(0, 0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); ...
21
votes
1answer
1k views

Camera Overlay with User-Photo not saving as edited

I am using a transparent image with a cut out for a user to insert / take their own image. For some reason, while using the UIImagePickerControllerEditedImage and cropping the user-taken photo, the ...
20
votes
7answers
31k views

How to zoom in/out an UIImage object when user pinches screen?

I would like to zoom in/out an UIImage object when the user performs the standard pinch action on my application. I'm currently using a UIImageView to display my image, if that detail helps in any ...
20
votes
2answers
9k views

How do I use the NSString draw functionality to create a UIImage from text

I have an NSString that I would like to draw it's contents to a UIImage but have absolutely NO idea how I would go about doing this. I need to call a method that I give it an NSString and returns a ...
18
votes
2answers
10k views

How to flip UIImage horizontally?

How to flip the UIImage horizontally, i found UIImageOrientationUpMirrored enumeration value in the UIImage class reference, how to make use of this property to flip UIImage.
18
votes
1answer
3k views

Downloading normal image Vs retina device image (2x)

When we need to download an image from some URL and show it on two kinds of devices -- Retina (with 2x image) and regular device -- Should we have two different image URLs to handle this? For the ...
17
votes
5answers
8k views

Any quick and dirty anti-aliasing techniques for a rotated UIImageView?

I've got a UIImageView (full frame and rectangular) that i'm rotating with a CGAffineTransform. The UIImage of the UIImageView fills the entire frame. When the image is rotated and drawn the edges ...
17
votes
3answers
8k views

how to make image not stretching in UIImageView

i have an UIImageView, i was set the frame into x = 0, y = 0, width = 404, andh height = 712. In my project, i need to change image in uiimageview dinamically. i use this code to change the image : ...
17
votes
5answers
14k views

didFinishPickingMediaWithInfo return nil photo

I am working to capture an image that is returned in 4.0 using - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { [[picker ...
16
votes
2answers
11k views

Using resizableImageWithCapInsets: image for button only works for the state set, other states show a “gap”

When using resizableImageWithCapInsets: to create an image for a UIButton only the normal state (the state set the image with using setBackgroundImage:forState:) works. All other states show a gap ...
15
votes
5answers
8k views

jpg images in iphone and 2x images

I am working on an iphone app and targeting iOS 4.0 or later. I am trying to add an image to UIImageView, and image is in jpeg format. This is what I have done so far.. UIImageView *bgImageView ...
14
votes
5answers
9k views

Adding Images to UIActionSheet buttons as in UIDocumentInteractionController?

Is it possible to add an image to the buttons of the UIActionSheet as in UIDocumentInteractionController? If so; how? Thanks.
14
votes
2answers
18k views

How does UIEdgeInsetsMake work?

I'm making an app where I use UIEdgeInsetsMake for resizableImageWithCapInsets, but I don't understand how does it works exactly, UIEdgeInsetsMake has 4 arguments: Bottom Top Left Right But ...
14
votes
1answer
11k views

Resize UIImage with aspect ratio?

I'm using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect ...
14
votes
10answers
703 views

UIImage to be displayed progressively from server

I have been trying to display large image from server, but I have to display it progressively. I used subclass of UIView and in that I have taken UIImage object, in which I used NSURLConnection and ...
14
votes
4answers
13k views

Optimized Image Loading in a UIScrollView

I have a UIScrollView that has a set of images loaded side-by-side inside it. You can see an example of my app here: http://www.42restaurants.com. My problem comes in with memory usage. I want to lazy ...
13
votes
6answers
41k views

UIImage resize (Scale proportion) [duplicate]

Possible Duplicate: Resize UIImage with aspect ratio? The following piece of code is resizing the image perfectly, but the problem is that it messes up the aspect ratio (resulting in a ...
13
votes
3answers
5k views

Most efficient way to draw part of an image in iOS

Given an UIImage and a CGRect, what is the most efficient way (in memory and time) to draw the part of the image corresponding to the CGRect (without scaling)? For reference, this is how I currently ...
13
votes
4answers
12k views

Removing image from UIImageView

I load a UIImageView with an image depending on user interaction. When the parent view is initially displayed, no image has been selected and the imageview is black. If the user leaves that view and ...
13
votes
1answer
6k views

Create a UIImage with a URL in iOS

To create an UiImage with a image file, I use the code as below: UIImage *aImage = [[UIImage imageNamed:@"demo.jpg"]autorelease]; If I want to create an UiImage with the URL ...
13
votes
1answer
3k views

How to implement highlighting on UIImage like UIButton does when tapped?

I need to replicate the effect that the UIButton does on an image when tapped, the highlighting. See: The original PNG is a square with alpha background. When I set it as UIButton's image it ...
13
votes
5answers
9k views

Get size of a UIImage (bytes length) not height and width

I'm trying to get the length of a UIImage. Not the width or height of the image, but the size of the data.
13
votes
1answer
3k views

Capture UIView as UIImage

I have been using this method to convert a UIView into UIImage. i.e. screen snapshot of a view - @interface UIView(Extended) - (UIImage *) imageByRenderingView; @end @implementation ...
13
votes
1answer
1k views

Cropping image with transparency in iPhone

I am working on Jigsaw type of game where i have two images for masking, I have implemented this code for masking - (UIImage*) maskImage:(UIImage *)image withMaskImage:(UIImage*)maskImage { ...
13
votes
2answers
4k views

Is there a way to clear the cache used by UIImage class?

It is well known that UIImage caches its image data when the image is loaded using the imageNamed: method. From apple documentation: ...
12
votes
3answers
19k views

How to set the opacity/alpha of a UIImage?

I know you can do this with a UIImageView, but can it be done to a UIImage? I want to have the animation images array property of a UIImageView to be an array of the same image but with different ...
12
votes
3answers
11k views

Stretching an UIImage while preserving the corners

I'm trying to stretch a navigation arrow image while preserving the edges so that the middle stretches and the ends are fixed. Here is the image that I'm trying to stretch: The following iOS 5 ...

1 2 3 4 5 72