0
votes
0answers
55 views

Getting image URL from NSMutableArray

I'm trying to get a pictureURL from an NSMutableArray to an imageview or just a subView. And I'm getting the URL and I can see it in the Xcode output. This is what I have: - ...
0
votes
3answers
46 views

UIImages NSURLs and Threads

I am trying to build a nice function to access the network for images, if they are found on the web, I store them in a cache system I made. If the image was already stored on the cache, I return it. ...
0
votes
0answers
10 views

How to transform the Touch-Position on an UIImage to the real Pixel-Position ?

I am currently trying to implement functionality that a user can select a region of an UIImage inside a UIImageView with a pan gesture. - (IBAction)handlePan:(UIPanGestureRecognizer *)recognizer { ...
0
votes
1answer
137 views

UIImage to raw NSData / avoid compression

I have my own image downloader class, it holds a queue and downloads images one (or a certain amount) at a time, writes them to the cache folder and retrieves them from the cache folder when ...
0
votes
0answers
50 views

Getting image from image picker causes memory warning

I am working on an app that requires both a thumbnail version and a compressed full version of an image selected from a UIImagePickerController. When selecting a relatively large image (such as those ...
0
votes
3answers
127 views

How to tile a UIImage vertically while only streching horizontally on iOS?

I have an image that can be stretched in the horizontal direction, but need to be tiled vertically (one on top of the other) to fill my view. How could I do this? I know that an image can be made ...
2
votes
2answers
137 views

Load UIImage form NSData in UIWebView and center it

So I basically get an NSData of UIImage and I use a UIWebView to display it. I do it that way: [self.view addSubview:webView]; webView.delegate = self; webView.scalesPageToFit = YES; ...
0
votes
2answers
86 views

Set alpha on one color in UIImage

I have this PNG image: (the area in the grey borders is transparent) I would like only the grey corners to have alpha of 0.5 If I set [imgView setAlpha:0.5f]; Also the transparent area in the ...
0
votes
0answers
72 views

UIImage from CIImage - Data length is zero?

I'm using an AVCaptureVideoDataOutput along with its delegate method to manipulate video frames. In the delegate method, I am using the sampleBuffer to create a CIImage, and from here I crop the ...
0
votes
1answer
42 views

UIImage doesn't load the image

Following code Works Fine.. scrollView1 = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 200, 1024, 200)]; scrollView1.contentSize = CGSizeMake(2048, 200); ...
0
votes
1answer
79 views

Getting the image from a UIButton

I'm trying to get the image assigned to a button on click, so I can assign it to something else when the button is clicked. I think I'm nearly there, I've managed to get the following info from the ...
0
votes
2answers
117 views

Cropping UIImage in any image resolution [duplicate]

Possible Duplicate: Cropping a UIImage I saw many tutorials about cropping images and am trying my luck but with no success. I need to crop the image from AVFoundation. Since when the ...
0
votes
1answer
70 views

crop a rotated UIImage

I have the exact problem as described here: crop a rotated UIImage. I need to crop a rotated UIImage, however, when I try the solution it doesn't crop the image UIView *rotatedViewBox = [[UIView ...
0
votes
0answers
99 views

Stroke path on UIImage appears with very little blurry border around, how to remove?

I stroke a line on a graphic context with CGContextStrokePath, i colore it with CGContextSetRGBStrokeColor It is useless for me to show you a picture, as the border effect is too thin. I need this ...
0
votes
0answers
98 views

Replace green color by transparent on a UIIMage

I draw green line on my UIImage with this : CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext() , 0 , 1 , 0 , 1); It works well But after i want to replace my green strokes by transparent I ...
0
votes
2answers
59 views

How can I make a UIImage programaticlly

This isn't what you probably thought it was to begin with. I know how to use UIImage's, but I now need to know how to create a "blank" UIImage using: CGRect screenRect = [self.view bounds]; Well, ...
0
votes
1answer
73 views

NSMutableArray not holding UIImages properly?

I have enabled my Cocoa Touch app to be navigable by swiping left or right to alter positions in history. The animation is kind of done like Android's "card" style. Where swiping to the left (<--) ...
0
votes
1answer
70 views

Finding Bounding Box of Rotated Image that has Transparent Background

I have a UIImage that has a transparent background. When rotating this image, I'd like to find the bounding box around the graphic (ie the nons transparent part, if you rotate it in a UIImageView, it ...
1
vote
2answers
110 views

objective c UIImage ontouch of image

The problem that I have is that I want to display a map of the world. I want the user to be able to click on a specific country. I know that I can make my UIImages(the pictures of the countries) the ...
0
votes
1answer
118 views

How to get this background strip in IOS 6?

I have used this background in older version, after updated to iOS 6.0 I am not able to find anywhere in IB. I stack overflowed and used this self.view.backgroundColor = [UIColor ...
0
votes
1answer
29 views

When updating a UIImageView image file, other UIImageView gets its position reseted to center

I have been trying to update two UIImageView elements almost simultaneously. Whilst one should have its position changed (image01), the other should have alter its image file (image02). The problem ...
0
votes
2answers
70 views

Image sharpness goes away with drawing gradient effect on it

I have an image (with X & 2X variants) which look sharp and clean on the retina device. But I wanted a gradient effect on it. Once I draw the gradients on it, image looses the sharpness, I guess ...
0
votes
1answer
95 views

UIImage Frame Null in NSMutableArray

I am trying to display star rating images, and I have three star images: full star, half star and an unselected grey-ed out star. I have an array which holds the stars: so for rating 4.5, it would ...
-1
votes
1answer
165 views

drawInRect of UIImage is Not working

I am Hardly Trying to learn New things with CoreGraphics. I have a the below code and the image is not set using drawInRect function. - (void)viewDidLoad { [super viewDidLoad]; ...
2
votes
2answers
109 views

How to add an image outside a uitableviewcell

Everywhere people are asking how to add an image inside an Uitableview. Well, I want the opposite, how can I make the cell shorter and add an image in front of it ? Just like the ...
0
votes
3answers
157 views

Button for Grid View of Images

I have a grid view of images...how can I make changes in my code to make it clickable for every image. How can I recive a click event for each image? - (void)viewDidLoad { [super viewDidLoad]; int ...
0
votes
1answer
86 views

drawInRect loses resolution when drawn to smaller image?

When i draw a large image (say 1000x1000 pixel) using drawInRect method with size say 200x200 pixel and again i use drawInRect method to draw the image to its original size (1000x1000 pixel) does the ...
0
votes
1answer
115 views

Getting an alpha channel when using CIFilters [How to clear it]

I have a bit of an issue with applying a sharpening filter on a UIImage. The code works perfectly but the problem that the resulting UIImage has an Alpha channel. This in turn causes some performance ...
0
votes
2answers
130 views

How to pass an uiimage to another view controller?

How to pass the uiimage selected in uiimagepickercontroller in MainViewController to SecondViewController? It did push to the SecondViewController, however the uiimage is empty. I've searched through ...
0
votes
1answer
157 views

UIImage uplaod to rest server the orientation will chage?

The camera take photo,upload to api successful but the Image orientation will turn left. NSData *data = [[[NSMutableData alloc] initWithData:imageData] autorelease]; NSString *path = ...
0
votes
1answer
47 views

UIImageView for a UIButton does not change

I have the following IBOutlet Action . . if(!isWishlisted) { isWishlisted = true; plistPath = [[NSBundle mainBundle] pathForResource:@"InYourWishlist" ofType:@"png"]; ...
0
votes
3answers
114 views

iOS set/change background image on load

I have to make som changes to a iPhone app... How can i change the background on a UIViewController on load (viewDidLoad) .. I have to show a .png from a URL .. Is that posible? I have tried: ...
-1
votes
4answers
204 views

size of UIImage stored as NSData?

Am i able to get the size (CGSize) of a UIImage stored as NSData without using [UIImage imageWithContentsOfFile:];? Being able to do this would make my code run faster.
0
votes
0answers
34 views

How can I test whether a point is inside the non-transparent part of a UIImageView?

I am making a simple game that requires me to test if a CGPoint is inside of a the non-transparent part of UIImageView.I am currently using the frame of the UIImageView, but I want it to return no, if ...
-1
votes
3answers
743 views

Draw clean and smooth free hand drawing with CGContext (alpha + blend)

Following is my code for free hand drawing using CGContext. I want to use the color having alpha value 0.6 and the blend mode as kCGBlendModeColor. But while drawing, I get the following effect : the ...
0
votes
1answer
59 views

Color UIImage like the color splurge app

How to change the color of the UIImage using the finger touch of the user like in color splurge application? I was able to convert the image into grey scale but when user touches the image it should ...
0
votes
1answer
290 views

Blending UIImage with alpha value

How to blend two images by changing alfa of only one image so that the upper image will be slightly transparent and the above image will be displayed as it is drawn on the background image.
1
vote
3answers
271 views

Reflection of UIImage without UIImageView

How to create a reflection of UIImage without using UIImageView ? I have seen the apple code for reflection using two imageViews but i don't want to add imageview in my application i just want whole ...
-1
votes
3answers
605 views

How to get a UIImage's image as an NSString?

I need to get the value of a UIImage's image as a string. Previously I was doing: if(images[imageNo].image == [UIImage imageNamed:@"image1.png"]) { But now I have a lot more conditions so I would ...
0
votes
1answer
2k views

UIImageView: Content Mode Aspect Fit Distorts Image

I'm trying to manually create a grid of images on the iPhone. I've placed all my UIImageViews correctly, and they're all linked up correctly to the code. However, I have one small issue: my images ...
0
votes
0answers
73 views

Image distorts when loaded from camera roll

Making an image editor app. My image seems to distort and I have made it so the image is resized so it doesn't conflict with the top and bottom nav bars. Is there anyway which I can make it so the ...
0
votes
2answers
220 views

UIProgressView when puting image into UIImageView

I wonder, how could I display UIProgressView in this case: I do photo with UIImagePickerController then in method - (void)imagePickerController:(UIImagePickerController *)picker ...
1
vote
1answer
228 views

UIImageView not redrawing when image set to nil

I am using a UIImageView to display both still and animated images. So sometimes, I'm using .image and sometimes I'm using .animationImages. This is fine. Whether it's static or animated, I store ...
2
votes
2answers
728 views

Setting resizable UIImage to a UIImageView at viewDidLoad is ignored

I have a UIImageView with an image that I want to be stretchable. In order to achieve that I do the following in viewDidLoad: -(void) buildResizableDescriptionAreaBackground { UIImage *image = ...
-2
votes
2answers
176 views

UIImageView to UIImage? [closed]

I want to upload an image to a server. I can do this and it works with a UIImage. However, I want to upload the current image being displayed in my application which is within a UIImageView. How can ...
0
votes
1answer
103 views

Use icns file as an image in iOS

Is there a way to use an icns file as the image source for I guess a UIImage? Or pick out one of the representations and resize? NSImage does not seem to be available in cocoa-touch. In particular ...
0
votes
3answers
340 views

Check whether +[UIImage imageNamed:] found an image

I have an long if statement to decide what image to show in a UIImageView. They are all .png files, and I use the code: if (whatever) { image = [UIImage imageNamed: @"imageName.png"]; } Does ...
0
votes
1answer
206 views

Changing the size of a UIImage

so I have this function: - (UIImage*)imageByCombiningImage:(UIImage*)firstImage withImage:(UIImage*)secondImage { UIImage *image = nil; UIImageView *temp_img = [[UIImageView alloc] ...
0
votes
1answer
92 views

iOS Share Camera Frame as Image

I'm developing an image processing prototype which requires me to capture frames from the camera and process them. I'm using a third-party library which processes the frames and then they are ...
0
votes
3answers
100 views

Compare downloaded image to saved image?

I want to compare an image that I am downloading from a server to an image saved to the bundle to see if its the same image. How would I accomplish this in iOS? Thanks! Shredder

1 2 3 4 5