0
votes
1answer
72 views
+50

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 ...
2
votes
1answer
40 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
0answers
33 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 ...
2
votes
1answer
64 views

Why is my image's Bytes per Row more than its Bytes per Pixel times its Width?

I'm converting images to a MOV file, and had an interesting thing happen to me. I logged my bits per color component, bits per pixel, and bytes per row. Here's my code: NSLog(@"Image width: %d, ...
0
votes
1answer
69 views

How do I capture a zoomed UIImageView inside of a Scrollview to crop?

Problem: Cropping with the image zoomed out is fine. Cropping with the image zoomed in is showing the image above what is should be. The yOffset I have in there is because the crop square I want ...
4
votes
3answers
239 views

Image segmentation for iOS

I need a way to transform image containing human into a image containing only body sihlouette in one color. First i took a look at Canny edge detector (OpenCV implementation), but this may lead to ...
1
vote
1answer
76 views

Set alpha of some pixels to zero

Let's say I have 2 images, one on top of the other. I want to set a portion of the top image's pixel's alpha values to zero so I get this effect illustrated below: The brown is the top image, and ...
0
votes
1answer
92 views

Monotouch - Correcting upside down image rotation

I have been using mono for a short while and one of the issues I came upon was that loading an image into a CGImage object would end up with the image being flipped vertically. This was the code I was ...
-1
votes
1answer
100 views

Objective c - UIImage resizing issue

I have a resource (.png file) that show a picture frame (border). This .png file is size 100x100px, and the border width is 10px. My Question: How can I create another UIImage from this image, ...
0
votes
1answer
98 views

UIImage byte order was changed [closed]

I am using [uiImage drawAtPoint] to draw a new image. But it turns out that the color gets changed. My original image uiImage is red while the generated image newImage is blue. Here is my code: ...
0
votes
1answer
92 views

How to save a UIImage with a mask

I have a UIImageView that can be moved/scaled (self.imageForEditing). On top of this image view I have an overlay with a hole cut out, which is static and can't be moved. I need to save just the part ...
1
vote
2answers
59 views

BAD_ACCESS when trying to free data when UIView to UIImage

I intended to take a snapshot of a UIView that drawed by OpenGL ES into an UIImage, here is the code I used: if(context){ [EAGLContext setCurrentContext:context]; ...
0
votes
2answers
113 views

Cropping UIImage in any image resolution [duplicate]

Possible Duplicate: Cropping a UIImage I saw many tutorials about cropping images and am trying my luck but with no success. I need to crop the image from AVFoundation. Since when the ...
0
votes
1answer
153 views

Blurry images after using setContentMode with UIViewContentModeScaleToFill

UIImageView *assetImageView = [[UIImageView alloc] initWithFrame:viewFrames]; [assetImageView setContentMode:UIViewContentModeScaleToFill]; [assetImageView setImage:[UIImage ...
0
votes
1answer
161 views

UIImage (CGImage) with memory mapped raw data

Is there a way to store and load raw image data on disk in iOS in order to save time and memory on decompression and reduce app's dirty memory footprint? Paul Haddad has been hinting to something ...
1
vote
1answer
239 views

iphone 4s - UIImage CGImage image dimensions

I have a crash which only occurs on 4S (not on 3GS). I am doubting its because of @2x. Basically I get raw bytes of image and manipulate. Here's the question I have. I load a image as mentioned in ...
-2
votes
1answer
111 views

Using CGImage to generate a low quality JPG from data? [closed]

I have some code which loads a jpg from data and displays it in a UIImageView. Because this takes a second, I want to load a lower quality version of the image and display that while the full image is ...
1
vote
1answer
207 views

iOS: How to rotate CGImage and draw it rotated onto UIImage?

I've been struggling with this for hours. Affine transforms never seem to do what I expect them to. CGContextSaveGState (ctx); float w = self.frame.size.width; float h = self.frame.size.height; ...
0
votes
1answer
136 views

Disposing UIImage and CGImage

Do I need to dispose UIImages and CGImages in MonoTouch application after I've finished working with them? What are the effects of disposing either of them? Is it safe to dispose any of them if the ...
0
votes
2answers
177 views

CGImageSourceCreateImageAtIndex returns nil

I'm trying to convert a pdf file to an image with this solution : CFURLRef urlRef = (CFURLRef)[NSURL ...
0
votes
1answer
224 views

Cropping UIImage from photo library vs iPhone camera

I can crop images from the iPhone's photo library no problem like this: CGRect topRect = CGRectMake(0, 0, image.size.width, image.size.height / 2); CGImageRef topCroppedCGImageRef = ...
1
vote
1answer
108 views

What is the fastest image format on an iPad?

Suppose the following: you download an image from the internet in your ipad app you can postprocess the image any way you want and the time it takes is not important (1 time operation when ...
0
votes
2answers
359 views

How to merge the perspective image(3D Transform)?

How to merge these two images(see attached image).I am using the below code. Its working for ordinary images not for 3D transform images. How to handle this issue. I have searched lot of times still ...
0
votes
1answer
72 views

CGImageCreateWithImageInRect Static Analyze Warning

I have the following function part of a UIImage Category: - (UIImage *)copyImageAtRect:(CGRect)rect { CGImageRef imageToSplit = self.CGImage; CGImageRef partOfImageAsCG = ...
1
vote
2answers
233 views

How to smooth edges of drawn image?

I'm using this code to colorize some images of a UIButton subclass: UIImage *img = [self imageForState:controlState]; // begin a new image context, to draw our colored image onto ...
0
votes
0answers
410 views

How to merge two images in iPhone sdk

My app requires to merge 2 images. Please guide me on how to stich the images. The common part should be overwritten. While using openCV framework, merging two image's with the help of ...
0
votes
1answer
127 views

iOS find subimage in a larger image

What is the best way to find coordinates of subimages in a larger image. Subimage is very simple and always the same. For example how do I find coordinates of all black squares in the image below:
0
votes
1answer
363 views

Problems scaling a UIImage to fit a UIButton

I have a set of buttons and different sized images. I want to scale each image in order that it fits the button in the correct aspect ratio. Once I've scaled the image, I set the button's image ...
0
votes
1answer
290 views

Simple puzzle game iOS: Analyzing alpha pixel issues

I create simple puzzle game and use next for this: I have an class named Piece. Piece class inherits from UIImageView and contain next field: @property(nonatomic, strong) NSString *pieceName; ...
0
votes
1answer
1k views

Converting UIImage to CGImage cause rotation of Image

I am trying to crop image by my custom cropper. Not from the UIImagePickerController's. Now for that I am showing the Image captured from Image Picker in a UIImgeView by handling UIImagePicker's ...
0
votes
1answer
107 views

Apply filter to MPMoviePlayer thumbnails without lag

I am able to generate a CGImage from a thumbnail in MPMoviePlayer. What I want to do is apply a filter on the image and show it on the device as fast as possible (probably in a UIImageView). The ...
0
votes
2answers
2k views

Rotating a CGImage

I have a UIImage that I'm getting from a UIImagePickerController. When I receive the image from the - (void)imagePickerController:(UIImagePickerController *)picker ...
0
votes
1answer
1k views

Save CIImage, by converting to CGImage, throws an error

I have an image I'm grabbing from AVFoundation: [stillImage captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:^(CMSampleBufferRef imageSampleBuffer, NSError *error) { ...
0
votes
1answer
231 views

Verify pixel with coord (iOS)

In my view I have few subviews. This is UIImageView. Each UIImageView contain image with alpha chanel. This is an image: I use this mehtod below for detecting my touch in location view: - ...
2
votes
3answers
884 views

IOS: Using A Pattern Image As A Background -Memory Leak

OK. I'll be looking for the answer, and may find it myself. I have a nasty habit of answering my own questions. In any case, I have an app that is designed to be "skinned" fairly easily. As part of ...
0
votes
3answers
814 views

CGImage of UIImage return NULL

I created a function for splitting an image into multiple images, but when I take take the CGImage of the UIImage, the CGImage returns NULL NSArray* splitImage(UIImage* image,NSUInteger pieces) { ...
1
vote
3answers
411 views

Capture some of the iphone screen

i am using this code to capture my screen. CGImageRef screen = UIGetScreenImage(); UIImage* image = [UIImage imageWithCGImage:screen]; CGImageRelease(screen); ...
0
votes
0answers
322 views

CGImage, UIImage, CGContextRef WITHOUT alpha channel

There seems to be plenty of examples of how to create an image WITH an alpha channel however what I need is an image WITHOUT and alpha channel. I have searched for days and there are ZERO examples of ...
1
vote
2answers
726 views

Converting from UIImage/CGImage to Leptonica Pix structure

I want to use Leptonica library in my iOS application for image processing and have troubles figuring out how to get Leptonica's Pix structure from UIImage. What I suggest to do is something like the ...
1
vote
1answer
1k views

Crop a UIImage to use with GLKTextureLoader

I am trying to crop an area out of a UIImage to use with GLKTextureLoader. I can set the texture directly using the the UIImage with the following: - (void)setTextureImage:(UIImage *)image { ...
1
vote
2answers
1k views

Zooming UIImage/CGImage

I am implementing a zooming feature in a camera app using AVFoundation. I am scaling my preview view like this: [videoPreviewView setTransform:CGAffineTransformMakeScale(cameraZoom, cameraZoom)]; ...
2
votes
1answer
1k views

iOS How to perform rotation on a cgimage efficiently (up to 125 frames)?

I have two images, let's call them image A and image B. I'm trying to rotate and scale image A and to draw it on top of image B at specific location. I use the function and method below to : 1. ...
1
vote
2answers
779 views

CGImageCreateWithMaskingColors leaving border when removing color

I'm using the code below to make the color magenta transparent: UIImage *inputImage = [UIImage imageWithData:UIImageJPEGRepresentation(anchorWithMask, 1.0)]; const float colorMasking[6] = {0.0, ...
3
votes
1answer
240 views

iphone UIImage resize by endpoints

I want resize the shapes draw on context by picking their endpoints. And also rotate it with its endPoints. Can anybody suggest me how can I do this with proper example? My edited Question. ...
0
votes
1answer
883 views

iOS: Converting between UIImage (PNG) and RGB8

I am using https://github.com/PaulSolt/UIImage-Conversion However, it seems to have a problem on the alpha channel. Problem reconstituting UIImage from RGBA pixel byte data I have simplified the ...
0
votes
1answer
86 views

iOS / Objective-C How to know if an image is a part of an other

I'm building a iPad application and i want to know if an image is a part of an other image and if this is a part, get the origin.x and the origin.y where the this part begin in the parent image. I ...
1
vote
1answer
430 views

UIImage/CGImage changing my pixel color

I have an image that is totally white in its RGB components, with varying alpha -- so, for example, 0xFFFFFF09 in RGBA format. But when I load this image with either UIImage or CGImage APIs, and then ...
21
votes
1answer
1k views

Camera Overlay with User-Photo not saving as edited

I am using a transparent image with a cut out for a user to insert / take their own image. For some reason, while using the UIImagePickerControllerEditedImage and cropping the user-taken photo, the ...
1
vote
2answers
541 views

CGImage/UIImage passing causes EXE-BAD-ACCESS

FIXED: I'm not sure yet why. Code has been updated below, and notes at the bottom I'm having a very strange error that does not show up on the Simulator (even when running Instruments), unless I turn ...
0
votes
1answer
1k views

Getting fullScreenImage from ALAssetRepresentation on background thread

I need to populate a number of UIImageView instances (about 10) with UIImage instances from ALAssets. I don't want to lock up the main thread while doing that so want to do as much as possible in a ...

1 2