The CGImageRef opaque type represents bitmap images and bitmap image masks, based on sample data supplied. This is part of the Core Graphics framework.
1
vote
2answers
133 views
Displaying a screen shot generated UIImage is not displaying in UIImageView (for device only)
I am trying to save an OpenGL buffer (whats currently displayed in the view) to the device's photo library. The code snippet below works fine on the simulator. But for the actual device it is ...
2
votes
1answer
57 views
Problems with NSArray of CGImageRef's (but not on simulator!)
I am trying to put a few CGImageRefs into an NSArray. It works as it should on the simulator, but not on the device - it crashes at the point where I try to form the array with a EXC_BAD_ACCESS code = ...
0
votes
1answer
59 views
app crashing if I am doing CGImageRelease(sourceImageRef),objective C
My first post is at here to look for the reason why my app is crashing. After almost 3 hours to detect and now I can find out where the leak is.
First of all, what I am doing is after downloading an ...
1
vote
2answers
107 views
Can I store a decompressed image in Core Data
I'm working on a carrousel of large amount of big images and I am making some tests trying to improve the performance loading the images. Right now, even if I am already decompressing the jpg on a ...
0
votes
0answers
248 views
No visible @interface for “UIView” declares the selector 'imageRef'
I am writing a camera app (similar to the native camera app) so that when the snap button is touched, I want to quickly grab the picture (from the hidden imageView) before the view resets and is ready ...
0
votes
1answer
75 views
CGImageRef | Memory Consumption | Leak
I need to capture the desktop image and process its RGB Data, i am using Quartz API to do the same,
The problem what i am facing is, high mem usage,
please refer the function ,
Edit here,
This ...
9
votes
1answer
331 views
Any way to encode a PNG faster than UIImagePNGRepresentation?
I'm generating a bunch of tiles for CATiledLayer. It takes about 11 seconds to generate 120 tiles at 256 x 256 with 4 levels of detail on an iPhone 4S. The image itself fits within 2048 x 2048.
My ...
3
votes
2answers
80 views
How to move the image on the CGContextRef
An image has been drawn on the CGContextRef:
CGContextDrawImage(context, CGRectMake(0, 0, width, height), image);
In another function, I want to move the image to the rect like
CGRectMake(100, ...
0
votes
0answers
49 views
Transferring CGImageRef between threads?
I'm looking to transfer a CGImageRef out of an AVCapture captureOutput.
I have a class variable:
CGImageRef *image1;
and a local (thread) variable:
CVImageBufferRef imageBuffer = ...
0
votes
1answer
102 views
How to overlay one CGImage over another
I wish to overlay one CGImage over another.
As an example the first CGImage is 1024x768 and want to overlay a second 100x100 CGImage at a given location.
I have seen how to do this using NSImage but ...
1
vote
1answer
283 views
CGImageRef from NSData is null, but UIImage is not?
I'm trying to move some image loading into the background. Currently i'm loading UIImages in the background but from what I have read, this is not the suggested way to go about doing it, instead I ...
0
votes
2answers
131 views
iphone development: when I analyze my app I have potential leak issue
When I analyze my iPhone app I have a blue arrow warning which says:
potential leak of an object stored into pauseImgBg
I simply crop a partial image from an atlas and put it into the pauseMenuIV ...
1
vote
0answers
171 views
getting photoshop to read my multi-layer CGImageRef tiff
Photoshop is making me quite confused.
I am able to create a multi-layer tif image from photoshop and read it into my program (cocoa build)
I am able to create a multi-layer tif in my program and ...
0
votes
0answers
165 views
iOS Blocks, CGImage and Autoreleasing
I am having a bit of a problem with CGImageRefs leaking and I think I have narrowed it down to where the problem is. I could do with some advice about how to actually handle the memory management in ...
0
votes
1answer
379 views
Getting UIImage from CIImage does not work properly
I am having trouble with getting a UIImage from and CIImage. The line of code below works fine on iOS6: (Output image is an CIImage)
self.imageView = [UIImage imageWithCIImage:outputImage];
or
...
0
votes
1answer
250 views
Memory Management for CGImageCreateWithImageInRect used for CAKeyFramAnimation
I'm using CAKeyFrameAnimation to animate few png images. I cut them from one png image by using CGImageCreateWithImageInRect
When I run Analyze function in XCode it shows me potential memory leaks. ...
2
votes
1answer
304 views
How to create a ICNS icon programmatically?
OK this is what I want :
Take some NSImages
Add them to an ICNS file
Save it
This is what I've done so far (purely as a test) :
- (CGImageRef)refFromImage:(NSImage*)img
{
CGImageSourceRef ...
0
votes
0answers
121 views
CAKeyframeAnimation - blink when switching animations
I have a problem with my animations. I mean animation with series of images played on UIImageView. I have some game objects with few actions each. Every action has own animation.
When the application ...
0
votes
1answer
75 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
6answers
922 views
How do I release a CGImageRef in iOS
I am writing this method to calculate the average R,G,B values of an image. The following method takes a UIImage as an input and returns an array containing the R,G,B values of the input image. I have ...
0
votes
1answer
109 views
CGImageRef change
there. How can I chage CGImageRef from another ViewController?
I have this code:
#import "ScratchableView.h"
@implementation ScratchableView
- (id)initWithFrame:(CGRect)frame {
self = [super ...
0
votes
1answer
68 views
Save pixels dynamically created and retrieve it back successfully
I am trying to insert pixels dynamically to a PNG image file and try to retrieve it back without any alteration to pixels I saved using the code below. But I'm not successful in doing so. Can ...
0
votes
1answer
209 views
Is a strange code? UIGraphicsGetImageFromCurrentImageContext [closed]
I have a question: Is the memory management strange in this code?
- (UIImage*) drawImage:(UIImage*) aSourceImage andParameters:(NSMutableDictionary*) aParameters andError:(NSError**) aError
{
...
0
votes
0answers
193 views
Objective-C: CGBitmapCreateContext with Indexed ColorSpace
I know the documentation says that CGBitMapContextCreate doesn't support indexed color spaces. That's troubling for me. I have a bunch of 256bit PNG files that I need to display, which are all ...
0
votes
0answers
413 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 ...
1
vote
0answers
156 views
CgImageRef as part of object under arc
Using Arc, I have a CgImageRef as a property of an object (Shape). Ultimately I will assign the CgImageRef to the contents of 1 or more layers but initially I just keep it in the shape. Things work ...
0
votes
2answers
517 views
Objective C- Memory leak with CGDataProviderCopyData
Im new developer on ObjC and trying to make a fill color app. When I touch on a image, the color will be changed but I got the merory leak with this function need your help:
-(void) ...
0
votes
0answers
95 views
CGImageCreate making noise towards bottom of the image Objective C
I'm using CGImageCreate to create an image from a byte buffer (of uint8_t). The image seems to get noise towards the bottom though. Is there an alternate way to do this or am I doing something wrong ...
0
votes
1answer
389 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
1answer
190 views
Memory leak. Instruments think all is fine
I am fairly experienced C programmer but IOS is new for me. I do have memory leak (I think this because I get MemoryWarning and soon my app gets killed with no mercy). But Instruments memory leak ...
0
votes
1answer
2k 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
981 views
how to convert NSData of image to CGImageRef with out memory leaks
i converted NSData of image to CGImage as below but i am getting memory leaks there but any one tell me how to convert that with out getting leaks:
CFDataRef imgData;
CGDataProviderRef ...
0
votes
1answer
786 views
NSInvalidArgument error - CGImageRef from CIImage
I'm getting an error on some code that two days ago was running fine. The error is:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFType extent]: ...
1
vote
2answers
413 views
CGImageCreate Test Pattern is not working (iOS)
I'm trying to create an UIImage test pattern for an iOS 5.1 device. The target UIImageView is 320x240 in size, but I was trying to create a 160x120 UIImage test pattern (future, non-test pattern ...
0
votes
0answers
87 views
CGImageRef method
I copied this method from an example to apply filters to an image but I have a problem:
CGImageRef createStandardImage(CGImageRef image)
{
const size_t width = CGImageGetWidth(image);
...
1
vote
1answer
170 views
CGPoint inside CGImageRef
Can I know if a CGPoint is inside a CGImageRef?
Or I should convert CGImageRef in other format?
UPDATE
maskcontext = CGBitmapContextCreate(currentM, w,
...
0
votes
1answer
587 views
CFDataRef and Pixel Data for iPhone Programming
I am trying to access the raw pixels of an image, but I keep running into a problem that got me really stuck. I am pretty new to iPhone programming so it might be something really simple...
Here is ...
4
votes
1answer
2k views
Getting NSImage from CGImageRef
I am trying process an image in CoreGraphics and then return the processed image back to an NSImage for saving and displaying. I have ample resources on how to perform these functions in iOS but 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
{
...
2
votes
1answer
631 views
Xcode Static Analyser reports one leak under ARC - CFImageRef - how to resolve
Out of some 2k lines of code, the Static Analyser has only one problem, thus:
spellDetailModalViewController *detailVC = [[spellDetailModalViewController alloc]init];
UIImage *tempImage = ...
0
votes
0answers
557 views
Convert UIImage from NSData
When you get image information in ios, is coded as below.
CGImageRef spriteImage = [UIImage imageNamed:fileName].CGImage;
But that does not support the type of image file i want to get the ...
2
votes
2answers
2k views
Setting the contents of a CALayer to a CGImageRef on iOS with ARC on
The following code compiles fine with manual memory management, but fails under ARC:
CALayer *layer = [CALayer layer];
layer.contents = [[UIImage imageNamed:@"dial.png"] CGImage];
The error is:
...
5
votes
1answer
1k views
NSImage to cv::Mat and vice versa
while working with OpenCV I need to convert a NSImage to an OpenCV multi-channel 2D matrix (cvMat) and vice versa.
What's the best way to do it?
Greets,
Dom
0
votes
1answer
411 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 ...
2
votes
2answers
1k views
CGImageRef property retain or not retain
I have a question on how to handle a CGImageRef as a synthesized property of a class.
If I define an CGImageRef with
@property (nonatomic, retain) CGImageRef image;
then the compiler complains that ...
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 ...
3
votes
1answer
243 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.
...
3
votes
1answer
538 views
How to release CGImageRef correctly?
My Code like this:
CGImageRef ImageCreateWithFile(NSString *filePath)
{
if(NULL == filePath)
return NULL;
NSData *data = [[NSData alloc] initWithContentsOfFile:filePath];
if(NULL == data)
...
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 ...

