0
votes
0answers
31 views

objective -c resizing image issue during rotation

here's my problem: I have a Joypad that works on a Player that has an attribute called shouldRotate (boolean) when move the Player the code checks if the Player's shouldRotate attribute is true or ...
3
votes
1answer
52 views

How can I get the dimensions of an image without downloading the entire image?

So far I have this method: + (CGSize) imageDimensions: (NSString *)url { NSURL *imageFileURL = [NSURL URLWithString: url]; CGImageSourceRef imageSource = CGImageSourceCreateWithURL((__bridge ...
2
votes
6answers
80 views

how to fill one row with an image in a UITableView

I'm creating a UITableView, containing information about a company. It has multiple sections, and I filled most cells with just a textlabel and a detailtextlabel through 2-dimensional array's. I want ...
0
votes
2answers
40 views

Download images from web and save on iPhone

I have to download images from web and save them on iPhone and then use that images for views. Main problem is: how should I save that images on iPhone ? Which method should I use ? NSUserDefaults, ...
-2
votes
0answers
16 views

why generateCGImagesAsynchronouslyForTimes have not give live results [closed]

I need the views to be filled with pictures as I'm moving the slider - (void)sliderPopoverView:(YZSliderPopover*)slider { if (fabs(slider.value - self.currentSliderValue) > 1.f) { ...
0
votes
0answers
25 views

Search image by image using google image in OS X application [closed]

In my App i need to search image by using images from google image. for the example i want to search image by using car image to get the similar image. Is there any API that can i use in OS X ...
0
votes
1answer
46 views

loading image fro MYSQL into Imageview

I have tried to find this answer for days now and cant find anything. I store url to image in my database and Im trying to get this url and load the image to a ImageView. Users uploads a image and ...
-4
votes
4answers
68 views

XCode: String URL to Image [closed]

How can I convert image from URL (String) to Image in XCode (Objective-C)? I have an images in URL. And I want to make the Array with this images but how images. Than I can read they in my IPhone ...
1
vote
3answers
71 views

Is there a way to identify if two images are nearly identical in Objective-C?

Say you have two images: and These pictures are nearly identical save for a few pixels that are different colors. Is there a native way in Objective-C to identify if two pictures are nearly ...
2
votes
1answer
33 views

How can I find out what the largest possible file-size for a given UIImage-size is?

I am creating a turn based game, and using GameCenter to handle it. At one point here, I want to send a small picture/icon in the matchData for the match. This query has nothing to do with Game Center ...
-1
votes
1answer
33 views

How can I access the textual information encoded in a PNG image file? (in objective c / iOS) [closed]

The PNG image format allows for encoding text information within the file (title, description, copyright, author, etc). The libpng library (written in c) is the example implementation to encode and ...
0
votes
1answer
32 views

UIImageView comparing images in game

I am working on a rock paper scissor shoe game, and I have no idea on how to do this. I have two UIImageView(s), and within each one is an image. I want to be able to compare the two images. I have ...
0
votes
1answer
46 views

Pulling Instagram images to my app

I'm developing and iOS app for iPad where you can personalize Tea Cups importing photos from the roll. I'd love to add Instagram, so the user could add his Instagram's photos. Is there any SDK or ...
0
votes
2answers
27 views

Image Bouncing while duing interface orientation

I am having paging in my application. Each page having Image. during the orientation i am changing the frame according to the landscape and portrait orientation. but image is bouncing. It should not ...
0
votes
1answer
37 views

web cam image from url using objective-c

I am writing an OS X app, with cocoa, and trying to figure out how to get a web-cam still image from an axiscam at this url: ...
0
votes
1answer
43 views

Making a UIButton change a UIImageView image

I'm very new to programming and objective c so please go easy on me. I would like a UIButton (which I'm using as an IBAction) to change an the image in a UIImageView when pressed. I put the ...
0
votes
2answers
54 views

UIView (subclass) trying to present UIImagePickerController

I have a parent view that allows you to see post in a UITableView. In its Navigation Bar I have a post button that when pressed presents a UIView subclass and shows it on the top of the screen. I ...
1
vote
3answers
81 views

Rotate Image on Slider Value in iOS

I am rotating the image on slider value - I am using this code for rotation - editingView.transform = CGAffineTransformRotate(editingView.transform,sliderVal); its Rotating properly but if i am ...
0
votes
2answers
64 views

How to show selected UIDatePicker date as UIButton text?

I'm having UIImage with arrow mark,on that I had place custom button. When i clicked this button I want to Show te date picker. After selecting the date from date-picker,I need to show selected date ...
1
vote
0answers
55 views

How to load in image already zoomed out

I am trying to display a large Image in my iPhone app. It behaves kind of strangely and I can't get it to center seeing as its so large. Is there a way to load it scaled down so that the whole image ...
0
votes
2answers
34 views

Populate an NSImageView box from NSString data

Apologies if this question seems rather trivial, but I am very new to Objective-C and I've been searching Google for a number of hours trying to find a solution to no avail. I have an NSString which ...
0
votes
5answers
126 views

Putting Byte value into NSDictionary [iOS]

I have a post web service, where I need to send image in byte array, and as I need to send post parameters in JSON format, I have created its NSDictionary. My issue is how can I assign object to key ...
2
votes
1answer
47 views

How to read localized image with imageWithContentsOfFile

this is my first question here :-) I have an image icon_new.png which is localized for 3 languages. I need to load it in run time using something like this: NSString *path = [[[NSBundle mainBundle] ...
-3
votes
2answers
43 views

display image in full screen mode [closed]

I'm trying to develop app that when I press a button in my view , the buuton shows uiimage image in full screen mode , with button to close the image , how can I do that ?
0
votes
0answers
28 views

Custom image map

Can anyone please help me to create custom image map with following features in iPhone? Highlight selected area on image Write text on selected area Thanks!
1
vote
2answers
43 views

selecting image for multiple image view from cam or library

I have 3 Image views on my view controller (Purpose Before ,During, After) . i need to select images for each of view respectively . the didicated method for this task is : -(void) ...
-3
votes
1answer
51 views

CGContext blend with mask [closed]

I want to achieve such an effect background image mask image front image and I need that output would be like that: All mask image white pixels is front image and black pixels of mask image are ...
2
votes
1answer
78 views

UIImageView not loading image on all devices

This is my first time posting a questions here. So far I have been able to find the solution to all issues I have had. For 2 weeks now I'm struggling with a strange issue. Issue Description: I'm ...
1
vote
2answers
79 views

How to set an image to a NSButton to be resized along with the button?

I have an image (3width x 15height, the first and last pixels are rounded on the corners), and I want to create a button (the height of the button is always the same, 15px, but the width changes) that ...
2
votes
4answers
184 views

What exactly IS the highlighted image in a UIImageView?

This question boggles my mind and I cannot find an answer. I looked all over the documentation, tried out code, and searched Google, but I can't find anything. The UIImageView in iOS programming can ...
0
votes
1answer
62 views

Not able to merge two images into one

I'm trying to merge two images in one, and save that image onto the camera roll. But it just show a blank image. Can anyone help? My code: -(void)SaveFinalImage{ ...
1
vote
2answers
134 views

iOS - Animating UIButton ImageView Images causes button to be 'selected' after

I am trying to animate the images of a UIButton. The animation runs fine, but afterwards it always puts a gray tint on the button (as if it was being highlighted/selected). Code: NSArray *images = ...
0
votes
1answer
96 views

Generating and saving images in iOS app

I want to be able to generate an image from a set of data. After the image is generated, I want to save it to the photo album and display it inside a scroll view. How do I tell the application to ...
1
vote
1answer
41 views

Change Size of button in the middle of a UIScrollView

I have a uiscrollview that contain several buttons. When the user scrolld a button to the middle of the scrollview I need to change the size of it. I have created and added the buttons ...
0
votes
0answers
38 views

Lazyloading Images Breaks loadHTMLString

I am pulling JSON data from a blog, and then using the url of a post to load the post content, and content alone. As of right now it loads the post content fine, but won't load the images. I think ...
0
votes
5answers
109 views

Add URL image to button click

I searched some tutorial for add UIImage to button for click event. How to add URL path image to button..For example code: UIButton *imageView=[[UIButton ...
0
votes
1answer
46 views

Thumbnails - Create local device or download from server

My question is performance related. I'm developing a native photo gallery mobile devices that downloads images form a server. I'm pondering weather I should store a thumbnail of each image on the ...
0
votes
0answers
22 views

MKAnnotationView Image weird behaviour with reuseIdentifier

I have a question concerning MKAnnotationView, MKPinAnnotationView and dequeueReusableAnnotationViewWithIdentifier: This is my mapView:viewForAnnotation: method: - (MKAnnotationView *) ...
1
vote
1answer
129 views

Extract image picture style from metadata

I'm using the ios CGImageSourceCopyPropertiesAtIndex to extract a lot of metadata for images on ios. But I cannot extract all metadata like the ones shown in Mac Preview app or the exiftool command. ...
4
votes
2answers
95 views

can we convert the NSDecimal values to UIImage?

i am sending some data and UIImage(converting UIImage to NSData) sending to server, My client is giving back the response what we send. But, Here my client giving the UIImage like the below format ...
1
vote
1answer
239 views

Multiple async requests at once in objective c

I have am downloading multiple images from a web server at the same time, and I the problem is they are getting mixed up with each other. dispatch_async(dispatch_get_global_queue(0,0), ^{ NSData ...
0
votes
1answer
140 views

Picture upload to PHP server doesn't work on a real iOS device

I have a problem to upload some pictures on my web server from the iPhone/ipad. Indeed, my code works really well on the simulator iPhone on the MAC but on a real device, it doesn't work, pictures are ...
1
vote
2answers
68 views

Use android shape xml resource on iOS app

I'm developing an iOS app with latest SDK. I have this resource from an Android app that I did: <?xml version="1.0" encoding="utf-8"?> <shape ...
0
votes
1answer
99 views

How to find product name or info from image ios

How can I find a product name or info by using image. just like RedLaser app is doing, you just snap the product and it will analyze and give you name and also give related products. Is there any web ...
2
votes
2answers
425 views

UIButton - Image in Default State, Title in Selected State

So I'm working my way through the second assignment for the Winter 2013 Stanford iOS/Objective-C class through iTunes U, and the very last part is driving me crazy. This is a card matching game. Each ...
0
votes
0answers
72 views

Sharekit - Ios 5 Facebook sharing images rotated 90 degrees

When sharing Facebook images, the images are rotated 90 degrees. This glitch seems to only effect ios5 users for some reason. Any idea on what may be causing the problem? - (void)viewDidLoad { ...
2
votes
1answer
106 views

what is the filename when saving image using UIImageWriteToSavedPhotosAlbum

I am creating app where I am taking photo or adding through lib and saving same image on server. Below is what I have #pragma mark - UIImagePickerControllerDelegate - ...
0
votes
0answers
15 views

Getting an image to show on screen. [closed]

OK so I am a big time beginner and I know this question probably has a simple answer but I am struggling to find it. So here is my question, how do I get and place an image on the screen in my iPhone ...
2
votes
2answers
180 views

How to draw text with attributes (Specifically Stroke and Fill color) in UIGraphicsImageContext for iPhone

I am trying to create an image of text to put on top of another image. The text needs to have a white fill and a black stroke outline. I am using objective-C and it is for the iPhone. I can get the ...
0
votes
1answer
122 views

ios imagepickerview cancel button functionality

My cancel button is pulling up the camera roll anyway. How do I remove that. - (void)cameraButtonClick:(id)sender { mediaPicker = [[UIImagePickerController alloc] init]; ...

1 2 3 4 5 10