0
votes
1answer
80 views

iPhone SDK building an Omnigraffle like app

I have been trying to find an example or some hints on how to create an app that I could drag, resize, rotate images onto a UIView and then save the individual pieces (including their size, rotation ...
0
votes
0answers
86 views

Load a bulk of images into UIScrollView

I have 2 scroll views, and I need to load 106 Images into every scroll view, below is the code I'm using, but it crashes when I'm trying to test it on my iphone 4. Every image is around 30-40KB, so ...
0
votes
1answer
278 views

Get stand out color of UIImage

I'm trying to get the color that stands out in a uiimage like I would get a red color if this was the photo: I know to get the average color i would use the code below but it would return nlack ...
0
votes
1answer
239 views

How to get coordinates of a view according to the coordinates of the uiimage on which it is placed in ios sdk?

I have an app where user takes a picture from camera and it is placed on a full screen image view. Now user can dear rectangular /square views on it and send the coordinates/size of the overlayed view ...
0
votes
3answers
59 views

image view— Is it possible to set the position of an UIImageView dynamicaly?

Is it possible to set the position of an UIImageView dynamicaly ? by moving Uislide bar.
0
votes
2answers
180 views

iPhone: image horizontal gallery

I am trying to create sample gallery before filling real data. float xAxis = 0; float mostHeight = self.galleryView.bounds.size.height; for (int i = 0; i < 5; i++) { ...
0
votes
1answer
105 views

UIImage resizing. OK on simulator, not on device

In an iPhone app, I wrote some code to resize an image taken from the photo album, in order to use it as background for the app. The code is strongly inspired from what I could find looking on the ...
0
votes
2answers
480 views

Toggle the button Image

After i implemented a code for give an check image for a button.but i want give check image for no of buttons. note: if i click on one button check image can be displayed and the same time i click on ...
3
votes
1answer
3k views

ImageIO: <ERROR> JPEG Corrupt JPEG data: premature end of data segment iphone - how to catch this?

I get this error by downloading an image by HTTP. I have looked at the answer here but even the valid images don't return YES from the function. Any other ideas? The code to get the image is ...
0
votes
1answer
851 views

How to do Image Processing with iPhoneSDK

How does one go with image processing & manipulation in an iPhone application? I would like to include below 3 important steps: access raw RGB from image data apply any image proccessing (edge ...
1
vote
3answers
975 views

UIImage as Parameter: Unrecognized selector sent to instance

The code below is the image picker callback that runs after the user takes a photo with the camera / or picks a photo from the library. Can someone explain to me why the first version works and ...
0
votes
0answers
458 views

iPhone - Convert .jpg image to .tiff programmatically [duplicate]

Possible Duplicate: Generating TIFF in iOS I am developing an iPhone Application in which I need to use .tiff image. But I have .jpg format images, which I need to convert them to .tiff ...
0
votes
1answer
583 views

Objective C: Method to update UIImage

would you please consider the following method: +(void)getGravatarFromEmail: (NSString *)email ofSize:(NSString *)size toImg:(UIImage *)myImg { NSString *hash = [md5 getMD5Hash:email]; // ...
1
vote
1answer
367 views

How to programmatically set the background on a UICustomButton?

I know this question has been asked and answered in other forums, but I can't seem to duplicate what they did and get it to work. I am trying to set the background to a button using a picture that I ...
-1
votes
2answers
389 views

assigning Image to UIButton in SubView

Well !!!!! I am here explaining about my app first. I have 3 UIViews in my main View tagged 111,222,333 and having number of buttons in them. As ViewWithTag 111 have 16 buttons As ViewWithTag 222 ...
1
vote
1answer
408 views

Is it possible to use UIGraphicsBeginImageContext from connectionDidFinishLoading?

I got these errors when the code below is executed: [Switching to process 74682 thread 0x2003] [Switching to process 74682 thread 0x207] [Switching to process 74682 thread 0x720f] -- - ...
0
votes
2answers
134 views

Help me understand leaks on this code: [duplicate]

Possible Duplicate: How to release an object declared into a method and passed to another method? Can you help me fix leaks in this code: - ...
-1
votes
3answers
132 views

How to release an object declared into a method and passed to another method?

Any idea on how to release the UIImage object picture in this case: - (void)connectionDidFinishLoading:(NSURLConnection *)connection { UIImage *payload = [[UIImage alloc] ...
0
votes
1answer
647 views

Hide/Show UIImage on UIbutton When Clicked

I have 10 UIimages and 10 UIButtons. M assigning Images to buttons via array. I want my to hide and show the images only on button Click. Is there any way to hide and show the UIImage whisch is ...
0
votes
3answers
377 views

Assign UIImages to UIButtons via Array

I have 10 images in array and 10 buttons, all i want is to set the images to buttons randomly. i tried this but not succeeded int index = arc4random() % 10; UIImage *img = [UIImage ...
0
votes
1answer
114 views

iPhone - Arrange images

This question may be silly. Is it possible to arrange three images as in the following attachment? Is it possible to design the UIImageView in such manner? If so, how? Share me some useful links. ...
0
votes
2answers
262 views

set UIButton's Image by array of Images randomly

I need your help as I dont know how can I set the background image of my UIButtons from array of images. I have 10 UIButtons and an array of 10 images. I want to set the images from array randomly. ...
0
votes
2answers
641 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 ...
0
votes
1answer
102 views

Disable toucesMoved on UIView

I have a UIImageView on which I am adding multiple UIImages on multiple click of a button and moving it with the help of TouchesMoevd. The problem is whenever I move the UIimage it moves through out ...
0
votes
1answer
23 views

UIImageview load from maindelegate

I try to load an uiimageview from the maindelegate so i can assign it later in each view that loads...but when i assign the local variable to the maindelegate variable the image does not show up! The ...
2
votes
2answers
410 views

Write multiline over an image

text1 is a very long string so, I want multiline support. What do I have to do for this? int w = img.size.width; int h = img.size.height; CGColorSpaceRef colorSpace= ...
1
vote
1answer
1k views

Fetching the last image captured through iPhone camera

I am trying fetch the picture which is captured by the camera in the iPhone, programmatically. Now, the issue is I am using AVCaptureInput, and other AVFoundation headers and accessing the camera of ...
1
vote
1answer
571 views

overlap one image over another

I want to add image and some text on another image and create a single image. I have got to add text but not able to figure out that how to add image. Any help?
0
votes
1answer
217 views

how to bound uiimagegview moving in particular portion

I am working on an application in which I am adding the same image again and again on a button click on random positions and moving those images. But on moving those images, images can move in whole ...
4
votes
1answer
3k views

Alternative to UIImage's imageWithCGImage:scale:orientation:

I built an app for 4.x which should be deployed for all iPhones 3.0-4.x. I realized that the imageWithCGImage:scale:orientation method is only available in 4.0 and later. Any alternative for 3.x? For ...
0
votes
1answer
131 views

How to hide an image for few milliseconds while page is loading.

I have a common image on number of pages of my project, so I place that image on window file. As some pages need not to display that image so i hide that image on corresponding pages. Now problem ...
2
votes
2answers
2k views

Automatic inclusion of @2x images (retina support)

Can any one tell me code of auto including @2x images if device is switched to iphone 4. I have searched very far on it, but nothing fruitful is found yet. I have already included @2x images in my ...
0
votes
1answer
360 views

How to get back from subview to previous view

I am working on an app, which consists of different modules. Through a starting page it is possible to navigate to those different modules. One of them is a kind of image picker, a view which shows ...
2
votes
3answers
992 views

Merging a previosly rotated by gesture UIImageView with another one. WYS is not WYG

Hi I'm gettin crazy while trying to merge two UIImageView. The situation: a background UIImageView (userPhotoImageView) an overlayed UIImageView (productPhotoImageView) that can be streched, ...
0
votes
7answers
1k views

UITableView scrolling not smooth due to processing

I'm using a UITableView to show 2 to 3 images as thumbnail in each table view cell. The images which I'm showing it in the tableview are huge in size. If I'm using those images directly without any ...
0
votes
1answer
2k views

how to get the size of the image which in UIImage picker controller before choosing it?

I want to get images from UIImagePickerControllerSourceTypePhotoLibrary, before choosing the image from image library, i want to know the memory size of that particular image . I'm using - ...
0
votes
1answer
1k views

Get bytes from UIImage

I have a UIImage object, but I need to access the bytes of the image. I don't see any method in the class reference to do this, such as getBytes, etc. This is coming back from a UIImagePicker, so I ...
1
vote
1answer
1k views

Accessing image file contents after UIImagePicker selection

I have a UIImagePicker selection, and on the selection of an image it returns an info dictionary with the following entries: UIImagePickerControllerMediaType = "public.image" ...
0
votes
1answer
134 views

Are there UIImageView differences between 4.2 and 4.3?

I am pulling down some images and saving them to disk. Then dishing them out via UIImageView. All works well in simulator under 4.2, but as soon as I switch it over to 4.3 all of the images are ...
1
vote
1answer
1k views

Bad Huffman code?

I am doing some testing in my iPhone app and I get this error: <Error>: Corrupt JPEG data: bad Huffman code I have seen some weird errors, but this one is really weird. I am also getting some ...
0
votes
1answer
2k views

Compress Image File Size (iPhone)?

I have a simple iPhone app that allows the user to upload images to a server. The problem is, what if they upload a large image file. I want to limit it down to (a max of) 200 KB. I started something ...
1
vote
2answers
1k views

Image Orientation Of JPEG Uploaded Using ASIHTTPRequest iPhone

I have written an app which takes a photo and uploads it to a remote database using a PHP file on that database. The problem is that when the photo is read from a website or just loaded from the link, ...
0
votes
1answer
93 views

Memory Management In iPhone

I have an iPad App which shows a whole load of information and related images. For instance: I can access to the section “Events”, from which I can choose one. Every single one has different dates or ...
0
votes
2answers
988 views

UIImage cache clearing problem

My image was loading from data server consumes a lot of memory, if images increase and once i moved to previous screen the used image memory is still consuming even i not using "alloc" . And is it ...
1
vote
1answer
3k views

UIActivityIndicatorView when loading image from online?

I have a simple script that displays in a UIImageView from the internet. Is there a way to display a UIActivityIndicatorView or something of that sort to show the user that it's loading? Here's my ...
3
votes
3answers
4k views

Loading Image into UIImageView using NSURLConnection

Hey all. I'm really new at this obj-c/xcode stuff. I'm trying to load the background of my xib file. To do this i'm using a UIImageView and populating that with an image I found from the net. the ...
0
votes
1answer
352 views

Problem! Add a .tiff image in my iOS4 app

I use Adobe Photoshop,created a .tiff image. Then I attach this image to an UIImageView. Code Like: UIImage *img = [UIImage imageNamed:@"xxx.tiff"]; UIImageView *imgView = [[UIImageView alloc] ...
1
vote
0answers
65 views

Get “name” of parsed file for image in UITableCell

I have a working project with a parsed XML file and my cell´s text from XML is fine. However, I´m trying to get the element-name for a tag "name" to represent my pictures for each row/cell. So In my ...
0
votes
1answer
1k views

Copy exif data from one image at photo library to another image

I try to load an image from the photo library and copy the exif data from this original image to a processed image and then save the processed image with the exif data to photo library. In order to ...
9
votes
3answers
6k views

create video from array of UIImages and save the video to iPhone library. AVAssetLibrary +AVFoundation

Problem in saving video to iPhone Library. i have an array of UIImages,and two buttons ,"convertToVideo"&"saveToiPhoneLib" -(IBAction) convertToVideo { NSArray *paths = ...

1 2