0
votes
2answers
49 views
UITableView with UIImageViews showing large UIImages - Scrolling Performance
I have a UITableView, with each cell containing 4 UIImageView s. I am loading the images asynchronously (using a third party UIImageView extension for asynchronous loading). And also doing the ...
0
votes
0answers
14 views
Saving to custom photo folder also saves to “Saved Photos” folder
Is there a way to disable the "Saved Photos" folder when saving to a custom folder?
NSData *data1 = UIImagePNGRepresentation(imageToCrop.image);
UIImage *tehnewimage = [UIImage imageWithData: ...
0
votes
3answers
58 views
How to add a UIImage to an email using MFMailComposerViewController? [duplicate]
I'm using the MFMailComposerViewController to send an email from an iOS app. The mail works except when trying to add an image. The issue with the image for me is getting it using
I've seen other ...
-1
votes
6answers
60 views
Check the current image of my UIButton [duplicate]
I want to make a select /deselect using a UIButton. Once I click the button, I want to change the image to p.png and if I click again, I want to change it to d.png. Then, I am trying to check whether ...
2
votes
1answer
27 views
Measure the memory usage of an UIImage array
I am implementing a custom control to present images, and that control uses an array to store either a UIImage or NSString object. I want to implement such a kind of mechanism:if the memory usage is ...
0
votes
1answer
15 views
Using UIControlEventTouchDragEnter to trigger a button's method… but doesn't work?
I am trying to set up a button using UIControlEventTouchDragEnter as the way to trigger the button's method. Specifically, I have a button, and I want the button's method to be triggered if the user ...
0
votes
0answers
20 views
Highlight UITabBarItem image
I am using UITabBarItems within a UITabBar. When a particular tabBarItem is selected it is shown highlighted. But for my case this highlighting is not enough (because of the background color of the ...
2
votes
3answers
70 views
UIImage setImage is very, very slow
I'm trying to load an image from a local URL using the following:
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:fileURL]];
[self.imageView setImage:image];
NSLog(@"imageView ...
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
4answers
111 views
How can i make clickable uiimage?
I have one menubar as a uiimage. I want to make 5 menu on this menubar are clickable and link to another view. Can anyone tell me the way i can do that? I found people using uibutton on the uiimage, ...
0
votes
1answer
33 views
UIImageView shows image on simulator but not on iPhone
I've been getting a very weird bug with one of my UIImageViews. I have a UITableView that lists items, and each cell is an item. Each item cell has a thumbnail image, a title, and a subtitle. I am ...
0
votes
1answer
47 views
Core Graphics - how to crop non-transparent pixels out of a UIImage?
I have a UIImage that is reading from a transparent PNG (500px by 500px). Somewhere in the image, there is a picture that I want to crop out and save as a separate UIImage. I also want to store the X ...
2
votes
2answers
47 views
Loading images for animation in UIImageView - iOS
I have around 300 images to be loaded for animation the images are named loading001.png, loading002.png, loading003.png, loading004.png………loading300.png
I am doing it in the following way.
.h file
...
0
votes
1answer
26 views
Objective C - UIImage resizing not working
I have a program that fetches an image from the library, but I'm using code I found online to resize that image so that it can fit on the screen (basically making it 640x960), but then it would still ...
3
votes
0answers
150 views
+50
drawn area in UIImage not recognized correctly
I am having a strange problem in my project. What I want to do is that, a user will paint or draw using swipe over a image as overlay and I just need to crop the area from the image that is below the ...
0
votes
3answers
72 views
UIImage animating an array of images
- (IBAction)didTouchAnimate:(UIButton*)sender {
UIImage *starImage = [UIImage imageNamed:@"star.png"];
UIImageView *starView = [[UIImageView alloc] initWithImage:starImage];
[starView ...
0
votes
2answers
54 views
UIImageView caching while tableviewcell height is reduced
I have UITableview which has custom cells with UIImageViews. In the UITableview I am increasing the height of the cell using didSelectRowAtIndexPath method. Also i am adding method to increase cell ...
0
votes
0answers
10 views
how to change the alpha of a groundoverlay in goolge maps ios sdk?
i added a groundoverlay to a mapview,and i found thoese ways to change the alpha of groundoverlay.icon.
How to set the opacity/alpha of a UIImage?
but it seems has no affect in the app,i still can not ...
0
votes
0answers
38 views
I want to make some area of image transparent. Image is set as background of an UIButton
I have an image with irregular shape. I set it as a background image of an UIButton.
Now, I use OBShapedButton library to enable touch only where image is non-transparent. But, for some reason if I ...
0
votes
1answer
18 views
Using ABUnknownPersonViewController with an image crashes
I'm trying to create a new address book entry with a name and an image using the ABUnknownPersonViewController to prompt whether the information should be added to an existing person or added as a new ...
0
votes
4answers
52 views
UITableView scrolls slow after downloading cell images
I am trying to download some thumbnail from server and then display them in each cell :
// displaying image...
dictionary = [newsFeed objectAtIndex:indexPath.row];
UIImage *image = [UIImage ...
0
votes
0answers
44 views
UIImageJPEGRepresentation sends less bytes but leaves image just as big on the server
I have a strange problem that I can't get to the bottom of. I'm sure I'm missing something really important.
I want to restrict the size of the image I send from an iPad to the server, so I'm ...
0
votes
1answer
49 views
Compress Large UIImage
so what im doing is compressing an image repeatedly until it fits within a size frame. It it takes to many attempts, give up and later we tell the user the image is to large.
My issue is that after ...
1
vote
2answers
43 views
Moving Background of a View
I have a really large image that I want to use as a background image of a view. However, I don't want to display the entire image at once; I want only a part of the image to be displayed, and then I ...
0
votes
0answers
69 views
UICollectionView showing empty cells
I have a UICollectionView that displays an array of images. The images in the cell are being displayed as white boxes instead of the real image.
I copied and pasted this code from another view and it ...
-2
votes
0answers
36 views
Programmatically cropping UIImages in iOS [duplicate]
I have a UIImage that contains a photo. The image has a squiggly-line overlay that's created when someone draws it by hand. This overlay is always closed i.e. forms one complete loop. How can I ...
2
votes
1answer
109 views
UIImage RBG Values Change when Saved to Device Library
I am working on a project that requires image pixel manipulation. What I am doing now is using UIImagePicker to receive a UIImage from the devices library. I then convert it to a CGImage, get the RBG ...
0
votes
2answers
47 views
How to rotate a image (globe) around Y axis?
I have an image of globe which I want to rotate continuously around Y-axis. I also want to simulate it as an 3D rotation. I found some code using CABasicLayer and CALayer, but they rotate an image ...
0
votes
2answers
41 views
Is UIImage (UIGraphicsBeginImageContextWithOptions()) creation faster than init with PNG?
Would using this class method and creating a solid color UIImage be faster than creating a png with a solid color?
+ (UIImage*) imageWithColor:(UIColor*)color size:(CGSize)size
{
...
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
1answer
37 views
Split image by alpha value 1 objective-c
Reference Link here...
Please find the image from above link. I need to extract all Black colored sharp objects from the above like specified image to a NSDictionary. The goal is to find the sizes of ...
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
45 views
objective c : can't display UIImage from url http://image.ohozaa.com/i/3ca/inIHge.jpg [closed]
NSURL *imageUrl = [NSURL URLWithString:@"http://image.ohozaa.com/i/3ca/inIHge.jpg"];
NSData *imageData = [NSData dataWithContentsOfURL:imageUrl];
UIImage *image = [UIImage imageWithData:imageData];
...
0
votes
2answers
41 views
didFinishPickingMediaWithInfo orientation issue
i'm trying to manage image rotation in imagePickerController:didFinishPickingMediaWithInfo, but after several attempts, I did not find any solutions. My last try is:
...
0
votes
0answers
16 views
Does networkActivityIndicatorVisible work in applicationDidBecomeActive?
I am trying to call the network indicator and then dismiss it after this code as you can see below but it does not show in the status bar. What am I doing wrong? I thought it was just that the network ...
0
votes
1answer
28 views
Import images and text into RTF file
I need to import images and some text into RTF file. Is there any easy way or should I use some finished code/example. Thanks.
Help!
-1
votes
1answer
49 views
How can we specify the warp? in Objective C [closed]
i am developing one application we need to stretch the face as per finger moved. if my finger moved on eyes then only eye will stretch, if my finger moved on nose then nose will stretch, if my finger ...
0
votes
1answer
33 views
Cannot get UIImage to show in a UICollectionViewCell
I'm unable to set an image in a UICollectionViewCell, the UILabel however, works fine. Here's the relevant code:
// CatagoryViewCell.m
#import "CatagoryViewCell.h"
@implementation CatagoryViewCell
...
0
votes
2answers
49 views
Image not showing up in UITabBarItem
I am using UITabBar and UITabBarItem. I have an URL of an image. I set UITabBarItem's image to that image using URL. But image is not showing up. If I use any other image from my MacBook, it works. My ...
0
votes
1answer
32 views
UIImage not aligning properly on UIDatepicker ( In device only)
I have a UIDatepicker where i have added border image so that it sits on top of UIDatepicker border . In simulator the border image is in exactly on top of UIDatepicker border ,but when i run the ...
0
votes
0answers
34 views
Very slow to resize animated UIImage frame by frame
I'm trying to resize down a GIF image in iOS, so I'm looping thru each frame as you can see in the code below.
NSMutableArray *animationImages = [NSArray arrayWithArray:sourceImage.images];
...
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
1answer
53 views
dataWithContentsOfURL and imageWithData take 84% of the whole loading time
these two lines took 40% and 42% (together 84%) of the whole loading time of my app. I tested it with Instruments.
NSData *storeImageData = [NSData dataWithContentsOfURL:storeImageURL]; //40% whole ...
0
votes
0answers
34 views
OpenCV GPUImageLuminanceThresholdFilter crashes in callback while autoreleasing
I created a category for UIImage+OpenCV in my project. I did a function for change threshold of my UIImage as below.
- (UIImage *)threshold:(CGFloat)value
{
GPUImageLuminanceThresholdFilter ...
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 ...
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?
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 ...



