The cgbitmapcontextcreate tag has no wiki summary.
0
votes
0answers
12 views
Bitmap context is always getting NULL
I wanted to draw an image on the buffer before appending it to the asset writer video input.
But, I have no idea why the bitmap context is always NULL.
Please help me on this problem.
...
0
votes
1answer
101 views
CGBitmapContextCreate bitsPerComponent for RBG565
I'm trying to create a CGContextRef using CGBitmapContextCreate. The bitmap I want to create is RBG565 (red and blue are 5 bits, green is 6 bits). One of the parameters for CGBitmapContextCreate is ...
0
votes
0answers
99 views
CGBitmapContextCreate returns NULL while processing SampleBuffer?
I have been trying to capture video using AVCaptureSession, I was trying with BGRA, it was fine, I need to capture using kCVPixelFormatType_420YpCbCr8BiPlanarFullRange
videoOutput.videoSettings = ...
3
votes
1answer
485 views
Drawing CGImage into Bitmap context, with UIBezierPath drawn into the context beforehand
this is my first question so please bear with me!
Im trying to write up a simple drawing app basically, I was using Core Graphics before, and the only problem was it was too slow, and when I drew ...
0
votes
1answer
194 views
CGBitmapContextGetData - can't copy data to the returned block of memory
I am drawing RGBA data onto the screen using CGBitmapContextCreate and CGContextDrawImage. When I try to create bitmapcontext using CGBitmapContextCreate(pixelBuffer,...) where I have alreadymalloc'ed ...
0
votes
0answers
72 views
How can i draw in-memory bitmap data which was created by CGBitmapContextCreate on UIView
It's defined like this:
CGContextRef context = CGBitmapContextCreate (bitmapData, pixWidth, pixHeiht, 8,
pixWidth, colorSpace, kCGImageAlphaOnly);
How can I ...
0
votes
1answer
46 views
How to set an image to fill in full view?
i am using below code for fill rgba forful view. but i am getting half(1/2) width only. anybody please inform me anything wrong with my code.
CGContextRef ...
0
votes
0answers
88 views
Create 1 bit image from UIView iPad
In my iPad application,user has option to draw his work in a view,then i want to convert that view into UIImage.I have to send those images into server. That image is currently 32 bit depth image but ...
1
vote
1answer
843 views
CGBitmapContextCreate unsupported parameter combination error
I'm reading an image file and re-displaying it without making any change as shown in the code below, but I get the this error:
: CGBitmapContextCreate: unsupported parameter combination: 8 integer ...
0
votes
2answers
795 views
“CGBitmapContextCreate: invalid data bytes/row” … why is camera+ filtering messing up my image cropping routine?
Original image:
Filtered image:
I am trying to crop UIImages (photos in a phone's camera roll) into squares. Here is part of the code I am using, where 'image' is the image that is being cropped:
...
0
votes
1answer
390 views
CGImageCreate Gives Completly black or no Image or crashes
I have been for some time now attempting to do the following,
player taps screen
get the values of the pixel the player has tapped
Loop through image to find out which pixels are the same Make all
...
0
votes
2answers
300 views
Iphone Pixel RGBA value editing
My goal is as follows.
When The player touches the screen the program should find out the values of the pixel at that location of touch and then loop through every pixel and any that are of the exact ...
1
vote
1answer
477 views
CGBitmapContextCreate returns NULL
Under what circumstances will a CGBitmapContext fail to allocate? I have a table view, and it has multiple view options. The user can see a small table cell with just previews, one larger preview ...
4
votes
4answers
3k views
How to create a CGBitmapContext which works for Retina display and not wasting space for regular display?
Is it true that if it is in UIKit, including drawRect, the HD aspect of Retina display is automatically handled? So does that mean in drawRect, the current graphics context for a 1024 x 768 view is ...
1
vote
1answer
226 views
In Core Graphics, why is Alpha channel preferred to be most significant? (kCGImageAlphaPremultipliedFirst vs kCGImageAlphaPremultipliedLast)
Most code that creates a bitmap context uses kCGImageAlphaPremultipliedFirst, to create ARGB, instead of kCGImageAlphaPremultipliedLast to create RGBA. Is there a reason ARGB is preferred?
(the ...
1
vote
1answer
131 views
Where is memory footprint increase in following function?
I am using following function. Whenever i call it that time it will increase my memory usage.I have checked all leaks. Even, I am release object immediately at they end of function. Here,I am ...
0
votes
2answers
443 views
iOS Does CGBitmapContextCreate copy data?
I have written this piece of code:
bitmapData = calloc(1, bitmapByteCount );
context = CGBitmapContextCreate (bitmapData,
pixelsWide,
...
7
votes
1answer
2k views
CGBitmapContextCreate with kCGImageAlphaNone
I desperately need to create a CGContextRef WITHOUT an alpha channel. Unfortunately, with Core Graphics you CANNOT specify kCGImageAlphaNone with CGBitmapCreateContext.
Can someone PLEASE post a ...
0
votes
1answer
412 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 = ...
2
votes
0answers
438 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 ...
1
vote
0answers
315 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
2answers
681 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 does't appear)
I ...
1
vote
1answer
561 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 ...
1
vote
0answers
1k 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 ...
1
vote
1answer
432 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 ...
1
vote
2answers
1k 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
260 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 ...
2
votes
1answer
1k 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
610 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
1answer
654 views
Drawing in Objective-c (iOS)
I develop an iOS app with user-drawing as one of its parts. I want to draw over a bitmap's context. This can be implemented in two ways:
1) When drawing option is selected I create bitmap context. ...
3
votes
2answers
10k 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 ...
0
votes
2answers
649 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
154 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
601 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 ...
2
votes
2answers
14k 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 ...
1
vote
1answer
2k 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: ...
20
votes
2answers
8k 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 ...
0
votes
2answers
2k 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 ...
1
vote
4answers
2k 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
1answer
827 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 ...
5
votes
6answers
3k 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 ...
10
votes
4answers
7k 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 ...