0
votes
1answer
77 views

Basic manipulation of a UIImage

I'm learning about basic manipulation of UIImages using Objective-C on iOS. Say I have a square 128x128 image. How can I crop the bottom half of the image and store just the top half in a 128x64 ...
-1
votes
1answer
1k views

iOS: Add text to image with Core Text

I am manipulating an image within an iPhone app - and I want to add a text string (a wrapped text) at the bottom of the image (it should always be on the lower third of the image). How would I use ...
1
vote
2answers
208 views

Subviews of UIView lose transparency

In my program, I have added a UIImageView as a subview of a UIView that has been declared in an xib file. This subview (which contains an image that is a PNG file) should have a transparent ...
0
votes
1answer
87 views

Is it possible to make colors invisible in the code?

For a game that I am currently making, I have a black background with many white dots, which are being used to represent stars. I have no need for the black color however, and I only wish for the ...
2
votes
1answer
597 views

iOS: Drawing just portions of a UImage

I am trying to draw just a custom portion of a UIImage (i.e.: I would like to reveal the portion of the UIImage user touches) and I am having reasonable results by using mask property of the layer. ...
0
votes
1answer
775 views

How to get smooth corner radius on a non square Objective C UIImageView

I am trying to get a nice round corner on a UIImageView. I have found an implemented the following code, which works fine if the image is a square. The problem is that my imageView is a rectangular ...
7
votes
1answer
408 views

Better image coloring logic/algorithm

I am developing an iOS app in which the user can change a part of an image's color, say a Tea Cup, by touching it. I am using Floodfill algorithm to fill colors so that the user has to tap on the Tea ...
0
votes
1answer
456 views

create a new image with only masked part (without transparent area) with new size

I have a mask and an image on which mask is applied to get a portion of that image. The problem is when I apply that mask on the image ,the resultant image from masking is of same size as the original ...
3
votes
2answers
2k views

Image Manipulation Filter like white Balance, Exposure, split Tone etc on IOS

I have been trying since one week to achieve some image manipulation filters like WHITE BALANCE, EXPOSURE and SPLIT TONING (as in Photoshop) for my IOS app, but I didn't get a standard implementation ...
2
votes
1answer
301 views

Shape transformation using Quartz (iOS)

I have to program a drawing tool that should display shapes on a plane. These shapes could either be arbitrary shapes, like an elipse or a cube, or some picture that would be drawn on the plane. What ...
3
votes
2answers
1k views

How to efficiently and fast blur an image on the iPhone?

If I have a UIImage or CGContextRef or the pure bitmap data (direct access to decompressed ARGB-8 pixels), what's my best option to blur an image with radius 10 pixels as fast as possible?
0
votes
1answer
117 views

How to obtain and modify a pixel value here?

Listing 2 of Apple's Q & A shows an example of how to modify pixels in a CGImageRef. The problem is: They're not showing how to obtain a pixel and modify it's R G B and A values. The interesting ...
2
votes
1answer
98 views

Is there a way to quickly modify individual color values in an image?

For example, I have a CGImageRef and I want to shift all pixels which are red to orange. Or to put it in other words: I want to apply a value function on every pixel in an image, which modifies the ...
0
votes
1answer
215 views

Change size of image picked from image gallery

I want to change the size of an image selected from the photo gallery. Is it possible? I'm getting an image sized (320, 290) and I want to change the image size to (480, 320).
2
votes
1answer
659 views

iOS: Adding 6x6 400x300px images to one composite image

My fellow developer and I are creating an iPhone app that is creating a composite image. The idea is to have 36 images in a 6x6 grid. Each original image is 400x300px. Hence the final image after ...
0
votes
0answers
463 views

Image editing in iphone

I want to create image as like cartoon of any particular image in iphone using some image processing . Can any one know how to change image in cartoon . or any algo to edit images in cartoon. Thanks ...
0
votes
0answers
124 views

Alpha values of PNG returning seemingly random numbers

I have a UIImage (on a iphone device from it's hard disk, which never changes and is not writeable to) which I get the raw pixel data using the following code: UInt8 * getPixelData(CGImageRef image) ...
1
vote
5answers
2k views

how to reduce size of image display on UIIMageview

I am new to iphone development My problem is that, in my app I have UIImageview, button1, button2. button1 is used to access images from saved photolibrary and button2 is used to store image in ...
1
vote
1answer
328 views

What is a color matrix for adjusting luminance?

Searching around there is lots of information on converting an image to luminance (B&W) or adjusting saturation w/out changing luminance. But how can you modify luminance itself? For instance, ...
1
vote
1answer
868 views

Loading large background images in cocos2d

Im working on an iphone platforms game developed using cocos2d and box2d which has to use a very large image as a background, my question is this: -which is the better way to load the image?? (I'm ...
1
vote
2answers
3k views

How to make an app similar to Fat Booth for the iPhone

I'm just curious how they make apps like Fat Booth for the iPhone? I've been learning/developing iphone apps for the last couple of months but have never ventured into anything image/photo/game based, ...
6
votes
3answers
728 views

How do iPhone applications that change your photo work?

You know those iPhone applications that fatten your face, make you look older, etc... How do they work? If I wanted to know how to code something similar in Objective C, where would you point me to ...
0
votes
1answer
1k views

iphone - digital image processing

I want to build an app similar to Fat Booth, Aging Boot etc. I am totally noob to digital image processing. where should I start? Some hints?
1
vote
1answer
1k views

Turn square image into round rect button with shine [Objective C]

In this picture you will see several TV show images that have been put into a rounded rect button with the same gloss/shine that an iphone app button usually has. In one of the icons you even see a ...
2
votes
1answer
5k views

Inserting NSData into SQLite on the iPhone

So far I've managed to create this method for inserting into a SQLite database on the iPhone: - (void) insertToDB :(NSString *)Identifier :(NSString *)Name { sqlite3 *database; ...
1
vote
1answer
680 views

Simple-iphone-image-processing source code question, what does this do

I am going through the source code for the above project and I don't understand the following lines of code can anyone help explain it to me please? I am trying to get the code to work with color ...
0
votes
0answers
2k views

how to crop an image using rectangale overlay and touch on iphone

I am looking for a good tutorial or sample code, that would show how to crop an image taking from iphone camera something in lines of http://img192.imageshack.us/img192/8930/customcropbox.jpg but ...
0
votes
2answers
639 views

How to access pixels of an NSBitmapImageRep?

I have an NSBitmapImageRep that is created like this: NSBitmapImageRep *imageRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL ...
3
votes
4answers
5k views

Image processing on the iPhone

I would like to apply image processing on pictures taken on the iPhone. This processing would involve 2D matrix convolutions etc. I'm afraid that the performance with nested NSArrays would be pretty ...
2
votes
3answers
2k views

How do I join x number of UIImages together?

I'm looking to stitch some images together, with the images always being added to the bottom of the previous image. e.g. I have images A,B and C. I would like them to appear on top of one another ...
0
votes
1answer
919 views

Warp image animations on iPhone

just working up to building another app and we'd like to include the ability to animate regions of the screen in response to device shakes/touches etc. For example you could tap the screen and the ...
4
votes
1answer
565 views

Remove white backgrounds from images

I have some product photos, from which I would like to remove the white background. An example: Is there a nice library or a manual way to do it with Cocoa or C? For which keywords (image ...
1
vote
3answers
12k views

How do I rotate an image on the iPhone?

How do I rotate an image in iPhone programming?
7
votes
1answer
14k views

UIImage Rotation custom degrees

I have been using the code in this sample to assist and this works well. http://www.platinumball.net/blog/2009/03/30/iphone-uiimage-rotation-and-mirroring/ I cannot workout how to rotate by a custom ...
12
votes
3answers
17k views

Creating mask with CGImageMaskCreate is all black (iphone)

I'm trying to create an image mask that from a composite of two existing images. First I start with creating the composite which consists of a small image that is the masking image, and a larger ...
11
votes
2answers
20k views

Slicing up a UIImage on iPhone

Objective: take a UIImage, crop out a square in the middle, change size of square to 320x320 pixels, slice up the image into 16 80x80 images, save the 16 images in an array. Here's my code: ...
37
votes
11answers
29k views

Rounded Corners on UIImage

I'm trying to draw images on the iPhone using with rounded corners, a la the contact images in the Contacts app. I've got code that generally work, but it occasionally crashes inside of the UIImage ...
68
votes
7answers
60k views

Cropping a UIImage

I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a UIImage and return a small, square representation of an image, similar to what's ...