Tagged Questions
0
votes
0answers
5 views
Creating a UIImage from a View optimizations
As i look through profiler, this code is killing me. Does someone know of a better way to do this? Basically, it's exactly as it seems: I'm trying to create an image from a view. This is the only way ...
0
votes
0answers
28 views
How do I resize a UIImage without smoothing? [duplicate]
I have a 16x16 UIImage. I want to convert that into a 128x128 UIImage without losing the sharpness. I will be putting the resulting image straight into a UIImageView.
These are the images start is on ...
0
votes
1answer
43 views
How to improve performance of UITableView loading hundreds of Images from Documents Directory?
I'm loading a list of image files from the Documents Directory and setting them inside a Custom UITableViewCell, however, my previous efforts have either been too memory heavy, or resulting in bad ...
0
votes
1answer
159 views
Control file name of UIImage send with UIActivityViewController
I'm sharing an image, along with a url and some text, with a UIActivityViewController. Everything works great, except the image file name is always 'Image-1' with no extension. In some cases this ...
2
votes
3answers
250 views
Colors Inverted when Creating UIImage from CIImage (iOS 6.0)
I've been trying a ton of different options and tricks for getting a UIImage to build properly from a CIImage. But, every time I create the CIImage its colors seem to be inverted.
The most recent ...
0
votes
0answers
166 views
Undo functionality in free hand drawing on UIImageView after zoom pinch gesture
I have an UIImageView displaying a picture.
I registered a pinch gesture to zoom in/out and a pan gesture to draw on it (i have a good reason to use the pan gesture for that, instead of touchMoved)
...
0
votes
1answer
35 views
drawinrect vs directly setting up the value
When do you use drawinrect for a string or image versus directly setting the value? For example, I can have a uilabel and use its text for string or I can use [somestring drawInRect:somerect]. ...
1
vote
1answer
37 views
A valid image not being returned from CoreImage in MonoTouch for a valid Asset
I am trying to get an image using this.
img = new UIImage(new MonoTouch.CoreImage.CIImage(validAssetObject),1.0f, UIImageOrientation.Up);
A CIImage is returned from the CIImage call. The new ...
5
votes
1answer
209 views
how do I stack the UIImage together and wavering or swing in UIKit
I would like to know how this app stacks up uiimage and wavering in UIKit.
I'm following this xcode: Using a UIImageView subclass with NSTimers
to have images dropping down in random, but how do I ...
0
votes
0answers
61 views
UIImage+Retina4 category not working if used in didMoveToSuperview
I'm using this UIImage category to automatically find the correct asset if the app's running on a retina 4 device:
http://www.sourcedrop.net/FY53a14b0127f
It correctly finds the asset with the ...
1
vote
2answers
62 views
How to create an image view on iphone from an image that is passed back from a webservice as a byte array
I am trying to create a UIImage from a byte array, which I get from the web service. The byte array comes embedded in a XML and in the method
-(void)parser:(NSXMLParser *)parser ...
0
votes
1answer
156 views
Creating a UIImage outside the main thread
I am creating a UIImage in a background thread using the code below, and then setting this image as the image of my view on the main thread. Once in a while, I get a bad access error. I am wondering ...
0
votes
0answers
651 views
Strange issue with IOS6 and UIImage
Currently, one of my game is using UIKit which its image comes from the spritesheets. Prior IOS6, the total memory used caps at 80mb at the title screen, but at IOS6, it spikes to 300MB. Even when I ...
3
votes
1answer
834 views
UIImage's drawInrect: smoothes image
I'm trying to draw image using UIImage's drawInRect: method. Here is the code:
UIImage *image = [UIImage imageNamed:@"OrangeBadge.png"];
UIGraphicsBeginImageContext(image.size);
[image ...
0
votes
0answers
112 views
Get Image From UIView With Out of Bounds Subviews
I have a UIView whose contents go beyond the frame of the UIView. I want to get a UIImage of the UIView instance, including the stuff that goes out of bounds. This works, but will not include the ...
0
votes
4answers
786 views
Converting UIImageView to UIImage
I'm working with images, I have tonnes of them, and I'm downloading them in real time from the server, before it was really fast with the AsyncImageView class, but know I'm working with the custom ...
0
votes
0answers
129 views
iPhone Photos app implementation issue
I want to implement iPhone Photo App (default iPhone app).
I faced difficulties, when I want to load big image (2400 * 3600). When I want to scroll from one image to another, I see something like ...
3
votes
1answer
384 views
ScreenShot of an UIWebView that is not currently on screen
I'm trying to generate thumbnails of several pages that will be displayed through a UIWebView. The problem is all of the images come out as gray or as the background color I set for the UIWebView. ...
2
votes
1answer
315 views
Performance issues when cropping UIImage (CoreGraphics, iOS)
The basic idea of what we are trying to do is that we have a large UIImage, and we want to slice it into several pieces. The user of the function can pass in a number of rows and number of columns, ...
0
votes
1answer
173 views
Connection between UIGraphicsGetImageFromCurrentImageContext and drawInrect
I have found the following code to resize an UIImage:
CGSize newSize = CGSizeMake(self.image.size.width*0.25, self.image.size.height*0.25);
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
...
2
votes
1answer
542 views
How to load a UIImage from file without caching in Monotouch?
If I look at the discussion here:
http://monotouch.2284126.n4.nabble.com/UIImageView-td4303177.html
Both, UIImage.FromFile() and UIImage.FromFileUncached() map to imageWithContentsOfFile: and are not ...
0
votes
2answers
237 views
Add uiimage in nsdocumentdirectory and retrieve
I am saving images to nsdocumentdirectory like this
NSArray *pathArr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
...
1
vote
3answers
3k views
Resizing Images Objective-C
I'm trying to downscale an image in Objective-C taken with the iPhone 4 and above so I can send it to the server as quickly as possible. At the moment the image at full size is taking ages.
The ...
0
votes
1answer
208 views
Resizable UIImage and retina
I am not sure what middle size I should use for the stretchable part of a retina image. The document says:
During scaling or resizing of the image, areas covered by a cap are
not scaled or ...
1
vote
1answer
202 views
How can I copy the screen of MKMapView in a UIImageView?
I have a screen on my map in MKMapView. How can copy this screen to a image and use it like a simple UIImageView.
0
votes
0answers
89 views
Using UIKit can you wrap a uiimage?
I have a game running on the iPhone 3 at 30 fps. I have subclassed UIView to create a scrolling background class. Is it possible to transform a uiimage to create the scrolling effect (wrap the image) ...
2
votes
1answer
186 views
How do I autocrop a UIImage?
I have a UIImage which contains a shape; the rest is transparent. I'd like to get another UIImage by cropping out as much of the transparent part as possible, still retaining all of the ...
1
vote
1answer
3k views
Loading UIImage in background thread causes ImageIO error
I am working on an iOS project that loads UIImages from URLs in a background thread and displays them in a horizontally paged scroll view. This behavior should mimic that of the native photo library ...
1
vote
2answers
431 views
UIImage imageNamed size
New to Objective-C, Cocoa, and compiled languages in general so forgive my ignorance:
UIImage *myImage = [UIImage imageNamed:@"1-filter.jpg"];
NSLog(@"myImage.size=%@", myImage.size);
Results in
...
1
vote
1answer
159 views
UIImage - Image loaded from AppBundle is saved at lower resolution in App Directory
So I have a UIImage that I load with [UIImage imageNamed]. I then save that file to my documents directory. My issue is that the file originally had 240 resolution. When I retrieve the file from ...
4
votes
2answers
3k views
Overlaying UIView with an background image
Is it possible to overlay UIView with an image without using UIImageView from the Interface Builder?
If not, how would you accomplish the same in code?
0
votes
1answer
232 views
Can I bake / flatten an UIImageView including its layer with rounded corners and masksToBounds
I'm trying to flatten some images I get from a server down to 40 x 40 thumbnails, so I can save them in /Library/Caches and use those instead with UITableViewCell's UIImage.
So far, I know how bake / ...
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 ...
0
votes
2answers
3k views
invalid context error when drawing a UIImage
I am trying to draw a UIImage to the context of my UIView. I've used this code with the context stuff commented in and out ...
- (void)drawRect:(CGRect)rect
{
...
2
votes
1answer
2k views
How to remove UIImage Background color and make it transparent?
I wanted to remove UIImage background color and make it transparent...
I tried this but the following code just changing White background color into Black Color.
UIImage* ...
0
votes
1answer
567 views
cut part image from uiimageview
I have a quick question.
I am trying to draw a shape on a picture and be able to cut what is in the circle. Any ideas how I would go about doing that?
3
votes
3answers
2k views
UIImageOrientation incorrect for left/right from loaded UIImage?
I am loading JPGs that are flagged with arbitrary EXIF orientation data (one of 8 orientations). I downloaded the eight sample image files from here (linked from this blog post).
Image 8 represents ...
2
votes
1answer
174 views
What is the correct way of decoding an UIImage within NSCoding protocols initWithCoder: method?
Please consider the following two initWithCoding: method implimentations and assume they belong to a class that contains a single UIImage property named image that implements the NSCoding protocol.
...
0
votes
1answer
354 views
Does accessing a CGImage from a UIImage impose flipping the bitmap?
UIKit has a coordinate system with an origin at top left.
Core Graphics has a coordinate system with an origin at bottom left.
When I accesss the CGImage of an UIImage, does this trigger an expensive ...
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 ...
7
votes
5answers
19k views
add image to uitableview cell
I have a tableview with subtitle cell type(title and subtitle) , how can I add small image to the left of this cells
Best regards
4
votes
2answers
11k views
UIButton backgroundImage stretchableImageWithLeftCapWidth:topCapHeight issue
I have a UIButton with a specified width of 200. Its autoresizingMask property is set to UIViewAutoresizingFlexibleWidth. A UIImage is applied to this button's backgroundImage property. This UIimage ...
2
votes
1answer
583 views
Passing Image data from UIImagePickerController off for background processing
I'm using a UIImagePickerController to capture a still image. I then need to do some processing work before saving different copies of the image to a Core Data store. The processing and saving work ...
0
votes
1answer
205 views
url from dictionary to uiimage
i have an nsdictionary, named 'JsonItem' which contain object for key 'PictureURl' i.e. an url, n try to pass it to NSURL, then to NSData and further to UIImage, but it is not showing any image in ...
3
votes
3answers
727 views
-[UIImage CGImage] returning nil
I'm wondering under which circumstances this code breaks in the second assert. In other words, when can -[UIImage CGImage] return nil? The documentation isn't very telling here.
- ...
4
votes
9answers
2k views
UIImageWriteToSavedPhotosAlbum causes EXC_BAD_ACCESS
I develop a CGImage and it works fine when the program displays it on the screen using this:
[output_view.layer performSelectorOnMainThread:@selector(setContents:) withObject: (id) image ...
1
vote
0answers
711 views
Saving masked UIImage to disk
I'm trying to save a multiple masked image to disk.
The code below explains How I do it. The maskImagewithStroke masks 2 times a picture : first time to provide an irregular stroke to a texture then ...
1
vote
3answers
1k views
How to scale up an UIImage without smoothening anything?
I want to scale up an UIImage in such a way, that the user can see the pixels in the UIImage very sharp. When I put that to an UIImageView and scale the transform matrix up, the UIImage appears ...
0
votes
2answers
1k views
UIImage from photo library very large
In my game I'm grabbing an image from the iPhone's photo library using the UIImagePickerController, which returns a UIImage. Because the image is a huge resolution (1536x2048), this UIImage takes up ...
1
vote
1answer
249 views
What is the fastest way to generate a new UIImage from transforms applied to an existing UIImage?
I am attempting to take an image captured from the rear camera, apply a scaling transformation to it and then output a new image with the same size of the original but scaled up.
What I have below ...


