Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
3k views

iPhone: Changing CGImageAlphaInfo of CGImage

I have a PNG image that has an unsupported bitmap graphics context pixel format. Whenever I attempt to resize the image, CGBitmapContextCreate() chokes on the unsupported format I receive the ...
5
votes
6answers
2k views

iPhone - UIImage Leak, CGBitmapContextCreateImage Leak

Alright I am having a world of difficulty tracking down this memory leak. When running this script I do not see any memory leaking, but my objectalloc is climbing. Instruments points to ...
5
votes
3answers
5k views

UIView: how to do non-destructive drawing?

My original question: I'm creating a simple drawing application and need to be able to draw over existing, previously drawn content in my drawRect. What is the proper way to draw on top of ...
1
vote
2answers
197 views

CGBitmapContextCreate memory leak?

I'm not sure I understand how to free a bitmap context. I'm doing the following: CGContextRef context = CGBitmapContextCreate(nil, size.width, size.height, 8, 0, CGColorSpaceCreateDeviceRGB(), ...
1
vote
0answers
160 views

CGBitmapContextCreate returns nil on anything but an iPhone 4 photo

I'm pretty sure this is a stupid coding error due to the fact i'm a bit of a newbie in iOS and especially on Quartz. I have the following code - Which works on photos i've taken with my iPhone's ...
1
vote
1answer
453 views

resize image with aspect ratio

I try to resize image with aspect ratio, like done in the following links Resizing UIimages pulled from the Camera also ROTATES the UIimage? UIImagePickerController, UIImage, Memory and More! This ...
1
vote
1answer
286 views

iOS sdk, render image from unsigned char array, CGBitmapContextCreate returns NULL

I have an unsigned char* data with the following values, as seen while debugging in xcode, ...
1
vote
3answers
2k views

iPhone CGContextRef CGBitmapContextCreate unsupported parameter combination

In my application I need to resize and crop some images, stored locally and online. On my iPhone 4(iOS 4.3.1) everything works OK, I have no problems. But on my iPhone 3G (iOS 3.2) the resizing and ...
1
vote
3answers
1k views

iPhone - CGBitmapContextCreateImage Leak, Anyone else with this problem?

Has anyone else come across this problem? I am resizing images pretty often with an NSTimer. After using Instruments it does not show any memory leaks but my objectalloc just continues to climb. It ...
0
votes
0answers
40 views

GBitmapContextCreate: unsupported parameter combination

Having trouble with CGBitmapContextCreate and getting: Error: Unsupported pixel description - 1 components, 8 bits-per-component, 8 bits-per-pixel with this code: float *bitmap = ...
0
votes
0answers
70 views

CGBitmapContext byte order changed to ABGR - and CGImage metadata doesn't seem to match bitmap contents

I am standardizing the orientation and max size of an image using the following code (gleaned from elsewhere): + (UIImage *)scaleAndRotateImage:(UIImage *)image { int kMaxResolution = 960; // Or ...
0
votes
0answers
40 views

How to get Quality image using CGBitmapContextCreateImage

How?... I am tring to get High Quality image using CGBitmapContextCreateImage() and tried to do it with the following code. - (CGImageRef) imageForPageIndex:(NSUInteger)pageIndex { NSUInteger ...
0
votes
1answer
86 views

setNeedsDisplay for UIImage doesn´t work

i am trying to draw a line on an UIImage with the Help of a dataBuffer when a button gets touched, but the drawRect: .. methode doesn´t get called. (so, the line i want to draw doesn´t appear) i ...
0
votes
1answer
125 views

Alpha Detection in Layer OK on Simulator, not iPhone

First, check out this very handy extension to CALayer from elsewhere on SO. It helps you determine if a point in a layer's contents-assigned CGImageRef is or isn't transparent. n.b.: There is no ...
0
votes
0answers
169 views

error in CGBitmapContextCreate

i'm trying to create UIImage from the sampleBufferData and here what i have in the console : CGBitmapContextCreate: invalid data bytes/row: should be at least 1920 for 8 integer bits/component, 3 ...
0
votes
1answer
203 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 ...
0
votes
0answers
90 views

text show overturned use CGBitmapContextCreate

use gb_wg_device = CGBitmapContextCreate(nil, width, height, ...
0
votes
0answers
43 views

A scheme to show picture

I have a requirement that need me to show picture using one canvas. All the operation will be done on this canvas, include change the picture (This picture is made of lines, rectangular and so on. ...
0
votes
2answers
396 views

iPhone SDK - CGBitmapContextCreate

I would like to create an image of my own. I already know its width (320*2 = 640) and height (427). So I have some raw data : unsigned char *rawImg = malloc(height * width * 4 *2 ); Then, I will ...
0
votes
1answer
95 views

Why does drawPatternInRect: on UIImage works only in Views context

I am creating my own context using CGBitmapContextCreate call. The context is created successfully. I can draw an UIImage in this context using the call CGContextDrawImage successfully. But, when I ...
0
votes
3answers
311 views

Help please with CGBitmapContext and 16 bit images

I'd LOVE to know what I'm doing wrong here. I'm a bit of a newbie with CGImageRefs so any advice would help. I'm trying to create a bitmap image that has as it's pixel values a weighted sum of the ...
0
votes
1answer
888 views

How to prevent unsupported parameter combination on CGBitmapContextCreate?

In my iPhone app, I download images from a web site. I would like to resize and crop these before saving them, but CGBitmapContextCreate tells me that the images have "unsupported parameter ...
0
votes
2answers
6k views

CGContext & CGBitmapContextCreateImage errors, how to fix?

I've been at this for hours now, and don't even know how to debug this error. Maybe there's an SO expert who knows what's going on. - (void) prepareSubset { CGSize size = [image size]; float scale ...
0
votes
1answer
807 views

Error With CBitmapContextCreate, CGContextDrawImage, CGBitmapContextCreateImage

Error: CGBitmapContextCreate: invalid data bytes/row: should be at least 400 for 8 integer bits/component, 3 components, kCGImageAlphaNoneSkipFirst. Error: CGContextDrawImage: invalid context Error: ...
0
votes
2answers
1k views

iPhone - Multiple CGBitmapContextCreateImage Calls - ObjectAlloc climbing

Has anyone else come across this problem? ObjectAlloc climbs as a result of the CGBitmapContextCreateImage. Does Apple's software not fully releasing the objectalloc? I am resizing images 12 times a ...
0
votes
1answer
684 views

iPhone - UIImage Leak, ObjectAlloc Building

Alright I am having a world of difficulty tracking down this memory leak. When running this script I do not see any memory leaking, but my objectalloc is climbing. Instruments points to ...