The basic image handling class of Cocoa-Touch on iOS.
472
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 ...
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 ...
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 ...
73
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 ...
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 ...
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
{
...
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 ...
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 ...
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 ...
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
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));
...
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, ...
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) ...
51
votes
9answers
40k 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
10
votes
4answers
7k views
CGImage/UIImage lazily loading on UI thread causes stutter
My program displays a horizontal scrolling surface tiled with UIImageViews from left to right. Code runs on the UI thread to ensure that newly-visible UIImageViews have a freshly loaded UIImage ...
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 ...
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 ...
10
votes
3answers
10k views
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 ...
12
votes
1answer
3k views
resizing a UIImage without loading it entirely into memory?
I'm developing an application where a user could potentially try and load very very large images. These images are first displayed as thumbnails in a table view. My original code would crash on large ...
0
votes
2answers
367 views
How to merge the perspective image(3D Transform)?
How to merge these two images(see attached image).I am using the below code. Its working for ordinary images not for 3D transform images. How to handle this issue. I have searched lot of times still ...
3
votes
4answers
4k views
4
votes
2answers
13k views
UIImage Saving image with file name on the iPhone
How can I save an image (like using UIImageWriteToSavedPhotosAlbum() method) with a filename of my choice to the private/var folder?
2
votes
3answers
4k views
High Quality Scaling of UIImage
I need to scale the resolution of an image coming from a view layer in an iPhone application. The obvious way is to specify a scale factor in UIGraphicsBeginImageContextWithOptions, but any time the ...
9
votes
1answer
8k views
Creating a UIImage from a rotated UIImageView
I have a UIImageView with an image in it. I have rotated the image prior to display by setting the transform property of the UIImageView to CGAffineTransformMakeRotation(angle) where angle is the ...
11
votes
2answers
15k views
How to create a UIImage from the current graphics context?
I'd like to create a UIImage object from the current graphics context. More specifically, my use case is a view that the user can draw lines on. They may draw incrementally. After they are done, ...
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?
0
votes
1answer
2k views
How does one compare one image to another to see if they are similar by a certain percentage, on the iPhone?
I basically want to take two images taken from the camera on the iPhone or iPad 2 and compare them to each other to see if they are pretty much the same. Obviously due to light etc the image will ...
1
vote
1answer
8k views
UIImage Shadow Trouble
I'm trying to add a small shadow to an image, much like the icon shadows in the App Store. Right now I'm using the following code to round the corners of my images. Does anyone know how I can adapt it ...
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. ...
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 ...
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.
8
votes
2answers
10k views
how to convert a CVImageBufferRef to UIImage
I amy trying to capture video from a camera. i have gotten the captureOutput:didOutputSampleBuffer: callback to trigger and it gives me a sample buffer that i then convert to a CVImageBufferRef. i ...
11
votes
3answers
12k views
How to crop the UIImage?
I develop an application in which i process the image using its pixels but in that image processing it takes a lot of time. Therefore i want to crop UIImage (Only middle part of image i.e. ...
5
votes
5answers
11k views
Getting Image from URL/server
I'm fairly new to iPhone development and trying to fetch 'Images from Server' in my application.
I'm using the following method to do this:
- (UIImage *)imageFromURLString:(NSString *)urlString
{
...
8
votes
2answers
8k views
Catching error: Corrupt JPEG data: premature end of data segment
When creating an UIImage with corrupt/incomplete JPEG data, the console will print out
<Error>: Corrupt JPEG data: premature end of data segment
The incomplete image will be shown, with grey ...
7
votes
1answer
14k views
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 ...
2
votes
3answers
3k views
Image processing Glamour filter in iphone
I want to create an app in which i want to do some image processing. So I would like to know if there is any open-source image processing library available? also I would like to create a filter like ...
7
votes
2answers
2k views
iPhone Glossy Icons Using Core Graphics
I was wondering if anyone knows how to take an Image using CoreGraphics and add a gloss effect like you see on iOS. Specifically I want to take an image that gets downloaded from the web and style it ...
4
votes
2answers
5k views
iOS - Merging two images of different size
I'm facing the following problem : I have to merge two images A and B to create a new image C as a result of the merging.
I already know how to merge two images but in this case my goal is a little ...
4
votes
3answers
2k views
Convert UIWebview contents to a UIImage when the webview is larger than the screen
Very similar to this question (and also this answer), I'm trying to make an UIImage out from a webview. So far I'm using the code suggested in the answer, specifically:
...
2
votes
2answers
1k views
iOS images in a bubble effect
I have some images that I want to "put inside a bubble". The bubbles kind of float around the screen with these images trapped inside them.
The best is a way to combine the inside image with the ...
2
votes
3answers
15k views
NSData to UIImage
I'm trying to save a UIIMage and then retrieve it and display it. I've been successful by saving an image in the bundle, retrieving it from there and displaying. My problem comes from when I try to ...
0
votes
2answers
654 views
Remote image size without downloading
Using Obj-c / Cocoa-touch, I'm trying to get the image size of a list of images but I don't want to download them.
Is there some easy way to do it? I found some solutions in other languages like this ...
8
votes
2answers
13k views
Create a UIImage from two other UIImages on the iPhone
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 ...
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 ...
9
votes
3answers
18k views
iPhone: How do I get the file path of an image saved with UIImageWriteToSavedPhotosAlbum()?
I'm saving a merged image to the iPhone photo library using:
UIImageWriteToSavedPhotosAlbum(viewImage, self, @selector(savedPhotoImage:didFinishSavingWithError:contextInfo:), nil);
And getting the ...
5
votes
1answer
3k views
layer.renderInContext doesn't take layer.mask into account?
I'm trying to render some UIImages into 1 single image that I can save in my photo album. But it seems to as if the layer.renderInContext doesn't take a layermask into account?
Current behavior: the ...
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.
6
votes
4answers
7k 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];
NSURLConnection ...
