The basic image handling class of Cocoa-Touch on iOS.
0
votes
1answer
49 views
Get height based on fixed width UIImageView image
How can I get height for UIImageView based on fixed (310.0f) UIImageView width for real looking image ?
So the thing should work for placing UIImageViews in UITableViewCells (thats not important for ...
0
votes
1answer
16 views
Working with autorotation and UINavigationBar images
I have a navigation bar that uses a custom image for the background. Along with some images for buttons UIBarButtonItems.
When the device is rotated the navigation bar height is obviously changed to ...
1
vote
2answers
49 views
How To Ignore Null String Values Out Of A Series Of NSStrings
I am using NSXMLParser to parse data from the RSS Feed. From CDATA Block, i am also pulling the images by first catching the image urls. This is how i am using the CDATA method of nsxmlparser:
- ...
0
votes
3answers
50 views
Darken an UIImage
I've searched a lot, but i can't find how you can darken an UIImageView if you press a button...
I've tried it with filters etc, but it did not work.
So how can I do this?
2
votes
0answers
18 views
Non Retina Ipad having blur issue when trying to get Thumbnail from Asset
I am having an application in which i need thumbnail of the image of asset i have selected from the gallery.
So wrote the following code for getting the thumbnail, it works fine in IPAD retina but ...
0
votes
1answer
75 views
UIImage imageWithData returns nil
I'm developing an iOS 5.0+ app with latest SDK.
On my app I have some C++ image recognition software, and I'm trying to save image recognized by this C++ functions.
I have this array to store image ...
0
votes
1answer
29 views
UIImageView resizes automatically on UICollectionViewCell, for no apparent reason
I'm trying to show a few images using UICollectionView, I already have the animation i wanted (to zoom in the "active" cell) and it works perfect when i just use the cell.
When i add an image to the ...
0
votes
1answer
36 views
Tried to add custom UIBarButtonItem to UIToolBar, but item comes out messed up
I'm trying to add a custom button (shape and color) to my UIToolBar, but it comes out much differently than it should.
What button looks like:
What it looks like in the bar:
Here's the code I ...
0
votes
3answers
67 views
Make UIImageView stay at current size without stretching image?
I have an app with images displayed in it. I have various images at different sizes displayed in my UIImageView.
What I want to do is set a size for the image view - call it 100x100.
If an image ...
2
votes
1answer
41 views
Colors are slightly different when creating new image from UIImage with UIGraphics and CGImage
I am using a UIImageView with contentMode:UIViewContentModeScaleAspectFill which contains an image that does not fill the UIImageView entirely.
For example the UIImageView has the size: ...
0
votes
3answers
81 views
Tell When a UIPageViewController is Scrolling (for Parallax Scrolling of an Image)
I am trying to make an effect similar to that found in the new Yahoo weather app. Basically, each page in the UIPageViewController has a background image, and when scrolling through the page view, the ...
0
votes
0answers
53 views
UIImageView dynamic image fixed width
I would like a UIImageView around 300 px width and dynamic height. Again, images shouldn't be streched too much, but just nice looking "golden-middle". Best example is 9gag application. Images are ...
0
votes
2answers
50 views
UIImage with NSData initWithData is nil
The following code does not seem to load an image.
uiTabBarItem = [[UITabBarItem alloc] init];
NSData *datatmp = [NSData dataWithContentsOfFile:@"newsicon.png"];
UIImage *tmp = [[UIImage alloc] ...
0
votes
1answer
56 views
Color overlay on specific area of UIImage
I'm trying to overlay a color on a UIImage, but only on the left half of the image (I'm using code from http://coffeeshopped.com/2010/09/iphone-how-to-dynamically-color-a-uiimage to overlay the ...
0
votes
1answer
49 views
UIImageView image or video
I have UIImageView where I put images from url (database). But there is one problem: some urls are not images but links to youtube or some other site. Is it possible to add video to UIImageView ? How ...
0
votes
0answers
82 views
Detect presence of objects using OpenCV in live iphone camera
Can anyone help me to detect realtime objects in iPhone camera using OpenCV?
My actual objective is to give an alert to users while an object interfering on a specific location of my application ...
0
votes
1answer
61 views
UITableViewCell Dynamic Height based on UIImageView
I have grouped UITableView with cells size of 400. Inside I have UIImageView with images from NSURL. How can I make those images to determine uitableviewcell height ? How can I even get real image ...
0
votes
2answers
60 views
How can i Change dynamically image from iphone 4 to iphone 5 screen
I'm sorry for my english.
In the app that i'm trying to develop in the first view i have a set of 4 images, one banner and one tab bar that i want to cover totally the screen size. For the 3.5-inch ...
0
votes
5answers
41 views
Image comparison with button image
I am trying to compare an image from a button with another image but its not working as expected and as stackoverflow suggestions...
if (favoriteButton.imageView.image == [UIImage ...
0
votes
3answers
61 views
how to change uiimageview image's programmatically
In my ios application i create uiimageviews programmatically like that,
for (int i=0; i<20; i++) {
productID=[products objectAtIndex:i];
...
-3
votes
1answer
35 views
Give smooth effect of UIImage Stratch [closed]
I am Creating one application and i required following effects.
I don't know hot to start work. if any one know what is my first step for this effect then please guide me for how to stretch Hair like ...
0
votes
1answer
59 views
iOS - Image that is downloaded in the background and assigned to UITableViewCell imageView does not fill view
Similar things that don't really answer my issue
Objective C: How to fix aspect ratio of image (and not change to fit imageview frame)
Resize UIImage with aspect ratio?
What I am doing
User taps ...
0
votes
0answers
23 views
Moving UIImage after OpenGL ES renders
I am trying to render a HUD using UIImageView over my OpenGL ES view. Basically, I am trying to move the HUD around on the screen after the view loads via touchesBegan. However, the problem is that I ...
0
votes
1answer
27 views
Strange behavior with drawing an UImage into graphic context
I have the following code to merge two pictures side by side horizontally :
CGFloat firstWidth = ImageLeft.size.width;
CGFloat firstHeight = ImageLeft.size.height;
CGFloat ...
0
votes
0answers
28 views
Is there a way to preserve the center of an UIImage (Inverted Cap Insets)
Is there a way to preserve the center of an image rather then the insets. Like an inverted Cap Inset?
0
votes
0answers
38 views
Making sense of caching and loading CGImageSource
I am testing jpg image loading and caching approaches on the iPad, but am not sure i have full understanding of all available options. So far i was using for loading
CGImageSourceCreateImageAtIndex
...
-1
votes
2answers
61 views
Why does this code resizing an image rotate it 90 degrees from original?
I have an iPad app where I'm using the camera. The original image is 480 x 640. I am attempting to resize it to 124 x 160 and then store it in CoreData using this code that I found on the internet:
...
0
votes
2answers
29 views
Display Top Portion of UIImageview
I'm trying to display a top portion of an UIImage.
I know I can use the following code and display the middle portion. I'm just trying to figure out how to do the same for the top portion:
...
2
votes
1answer
44 views
Showing a subliminal image on iPad
While working on an iPad app for researchers in cognitive science, they asked me if it would be possible to show an image (PNG) fullscreen for a couple of milliseconds (10-30 milliseconds).
My guess ...
0
votes
0answers
30 views
Taking pictures with a transparant overlay
My app can take pictures and when taking a picture an overlay is shown which fills the whole screen and most of it is transparant. When I take a picture the image is rendered and the overlay is drawn ...
0
votes
1answer
38 views
Slice multiple part from single image in iPhone? [duplicate]
I am working in iPhone application, I have tried to slice multiple part from single image but i can't get exact solution. I want single image to slice multiple part like 3x3, 4x4, 5x5, 6x6 etc... How ...
-2
votes
4answers
99 views
Auto scrolling the scrollview?
i have one scrollview in my view2 ,when i open that view2 i want to scroll the scrollview contents in x axis i tried this one buts not working for me..please help
self.scrollView.scrollEnabled = ...
1
vote
1answer
36 views
Convenience methods for resizable images
I've got a load of images that are resizable in my app and I use them all over the place.
Most of them have the same edge insets but some are different.
It takes a lot of code to create them too...
...
0
votes
3answers
115 views
How to resize UIImage created with resizableImageWithCapInsets when used for an UIImageView / UIView
I'm writing code to use a custom image as the background for a UIView.
The app runs in portrait only. Prior to the 4" retina screen, I used fixed size, hand-drawn png as the background image ...
0
votes
3answers
58 views
iOS - View high resolution image
I want to display a high resolution image in imageview. Here is what i do
Prepare UIImage in the background
When the file is loaded, switch to main thread
Display the image [ by using UIImageView's ...
0
votes
2answers
68 views
Image for Iphone 4 and Iphone 5
My app can have many images for background. This images I need download, so I don't want download separately for iPhone 4 and iPhone 5. I use method self.view.backgroundcolor = [UIColor ...
0
votes
1answer
23 views
CIFilter HueAdjust
How to programmatically change the hue of UIImage?
I am using the above page's advice, for Core image filter CIFilter. The only problem I am having is my when I rotate to a yellow hue, it's a dark ...
0
votes
0answers
87 views
Save UIImage -> NSData to Core Data binary
I want to store an image I picked with the UIImagePickerController from the camera to CoreData. The column is a binary type with "Allows External Storage".
The method I want to save:
...
0
votes
1answer
27 views
Drawing Image with Alternating Colors
How can we draw a background pattern (to be set to UIImageView) programmatically like the following?
It has alternating colored squares like 20 x 20 pixels. I can do it with REAL Stupid and MS ...
-1
votes
0answers
31 views
Smooth edges in unicolor transparent image
I have transparent png image with object in one color. The problem is that object have some really sharp edges and i want to make them smoother, desired result is shown at preview image. I`ve tried to ...
0
votes
0answers
6 views
Base64encoded UIIimage is mirrored on Windows
I am sending an base64encoded UIImage(jpeg) to a WCF Webbservice (JSON) and when its displayed on Windows then its mirrored. Its compressed using UIImageJPEGRepresentation and I can confirm that it ...
1
vote
2answers
69 views
Clip UIImage with UIBezierPath Asynchronously
I want to add rounded corners to an UIImageView without using QuartzCore to avoid performance issues in a UIScrollView so I solved it like that:
UIBezierPath *path = [UIBezierPath ...
1
vote
2answers
26 views
loading png in uiimageview crashes app xcode
I make an image with photoshop in png format. when i try to use in my project in UIImageView and run the app, it crashes just after the launch screen. when i remove the png, the app works great. why ...
0
votes
1answer
46 views
Convert uiimage to binarydata
In my app am uploading an image from photo library to UIImageView .
using this step
NSData *imageData = UIImageJPEGRepresentation(imageView.image, 0.9);
am getting an imagedata.
I want to insert ...
1
vote
1answer
62 views
Creating a higher-resolution PNG image programmatically
So I have some copypasta way to create a PNG file and it's working splendidly, however, when going to print this PNG it appears kind of "blurry" like a low resolution image. Is there any way to create ...
0
votes
0answers
28 views
Load non-retina image resource on retina device?
There must be an easy solution to this that I'm overlooking.
I have two image resources
image.png
image@2x.png
The resolution of image@2x.png is a little too much for the iPhone 4. So ...
0
votes
3answers
38 views
png file shows up on simulator, but not ipad
I'm struggling with a problem that maybe someone can help me with.
[slider setThumbImage:[UIImage imageNamed:@"circle_black.png"] forState:UIControlStateNormal];
The above code correctly displays ...
0
votes
0answers
24 views
comparing image from ui to sqlite database image
I want to make an application in ios which has image in imageview and a database with thousand of images which will be used for comparing the image that is currently in image view
for. eg: suppose i ...
-1
votes
4answers
117 views
Asynchronous loading of images?
How can I load images asynchronously? This is currently what I'm doing (borrowed from open source code for loading an image thumbnail):
- ...
0
votes
0answers
29 views
Rotating UIImage causing some iPhones to crash
On my app, I build a PDF. I add an image to the PDF file. When I use UIImagePickerController and select a portrait photo, it automatically rotates it 90 degrees to the left. So, in order to fix ...










