CGImage represents a drawable image object in Core Graphics (the low-level procedural drawing API for iOS and Mac OS X).
19
votes
1answer
509 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 ...
11
votes
4answers
9k views
Convert image to grayscale
I am trying to convert an image into grayscale in the following way:
#define bytesPerPixel 4
#define bitsPerComponent 8
-(unsigned char*) getBytesForImage: (UIImage*)pImage
{
CGImageRef image = ...
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 ...
7
votes
4answers
3k views
CGImage/UIImage lazily loading on UI thread causes stutter
My program displays a horizontal scrolling surface tiled with UIImageViews from left to right. Code runs on the UI thread to ensure that newly-visible UIImageViews have a freshly loaded UIImage ...
6
votes
1answer
1k views
CGBitmapContextCreateImage - vm_copy failed - iPhone SDK
I am having an issue using CGBitmapContextCreateImage in my iPhone app.
I am using AV Foundation Framework to grab camera frames using this method:
- (void)captureOutput:(AVCaptureOutput ...
6
votes
3answers
2k views
UIImage created from CGImageRef fails with UIImagePNGRepresentation
I'm using the following code to crop and create a new UIImage out of a bigger one. I've isolated the issue to be with the function CGImageCreateWithImageInRect() which seem to not set some CGImage ...
5
votes
2answers
729 views
iPad (very) simple drawing
I'm trying to implement a very simple drawing view in my app. This is only a small part of my app but it's turning into a real hassle. This is what I have so far, but all it's displaying right now is ...
5
votes
7answers
8k views
takepicture() vs UIGetScreenImage()
I'm trying to build a QRCodeReader for a project our research group is working on for the iPhone. After much research I found the program called QuickMark. This program scans automatically for ...
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 ...
4
votes
2answers
3k views
Most efficent way to create a CALayer with an image in it?
I am wondering what the most efficient way is to make a CALayer with an image in it.
I know you can load a UIImage and then call [image CGImage] but is this the best way of going about it? As far as ...
3
votes
1answer
92 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
3
votes
1answer
127 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
2answers
251 views
How to determine and interpret the pixel format of a CGImage
I'm loading this (very small) image using:
UIImage* image = [UIImage named:@"someFile.png"];
The image is 4x1 and it contains a red, green, blue and white pixel from left to right, in that order.
...
3
votes
1answer
202 views
Crop UIImage to alpha
I have a rather large, almost full screen image that I'm going to be displaying on an iPad. The image is about 80% transparent. I need to, on the client, determine the bounding box of the opaque ...
3
votes
2answers
325 views
-[UIImage CGImage] returning nil
I'm wondering under which circumstances this code breaks in the second assert. In other words, when can -[UIImage CGImage] return nil? The documentation isn't very telling here.
- ...
3
votes
4answers
684 views
When to release the UIImage?
I use the following code to draw a subimage
UIImage* subIm = getSubImage( large, rect );
[subIm drawInRect:self.bounds];
where getSubImage is defined as follows
UIImage* getSubImage(UIImage* ...
3
votes
1answer
603 views
Cocoa Touch - How to cache a CGImageRef or UIImage (not using imageNamed:)?
I have a lot of images in my app so I decided to do some loading in a background thread, and since UIKit isn't thread-safe, I filled arrays with CGImageRefs. However, they are not cached and I need to ...
3
votes
3answers
3k views
Saving CGImageRef to a png file?
in my Cocoa application, I load a .jpg file from disk, manipulate it. Now it needs to be written to disk as a .png file. How can you do that?
Thanks for your help!
2
votes
1answer
74 views
add/pass (exif) thumbnail to CGImageDestinationRef
On CGImageDestinationRef Apple's reference it mentions that It can contain thumbnail images as well as properties for each image. The part with the properties works nice, by setting the properties ...
2
votes
1answer
152 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. ...
2
votes
1answer
91 views
32 bits big endian floating point data to CGImage
I am trying to write an application which read FITS image. FITS stand for Flexible Image Transport format and it is a format wish is primarily used to store scientific data related to astrophysics, ...
2
votes
1answer
222 views
What does a correct call to CGImageCreate look like if the data provider for it uses an array created by the app?
I'm trying to create a bitmap in memory as part of a pattern function that a drawLayer:inContext: method (this method is part of the CALayer delegate protocol) will call. The pattern function looks ...
2
votes
1answer
140 views
color balance on the iPhone
I am taking an image, loading it via the screen context, and changing it pixel by pixel. I have a number of different filters that I am applying to the images, but the last thing I need to do is ...
2
votes
1answer
2k views
Getting RGB pixel data from CGImage
I am trying to access pixel data from a CGImage. I want to be able to access the RGB values as integers. I think I am nearly there with this code:
UIImage* theImage = [UIImage imageNamed:@"rgb.png"];
...
2
votes
1answer
139 views
Decode values ignored in CGCreateImage
I am creating a monochrome image with the following code:
CGColorSpaceRef cgColorSpace = CGColorSpaceCreateDeviceGray();
CGImageRef cgImage = CGImageCreate (width, height, 1, 1, rowBytes, ...
2
votes
1answer
904 views
Display NSImage from NSData
My target is to display an image in a view.
Considering I've an:
IBOutlet NSImageView *image for display my image
NSData *imageData for readig the image file
NSImage *imageView
In imageData is ...
2
votes
1answer
855 views
iPhone - CGImageCreateWithImageInRect rotating some camera roll pictures
I am working on a pixelate application for iPhone.
Because the pictures taken with the iPhone 4 camera are too big and therefore the application is working really slow when updating the pixelated ...
2
votes
2answers
467 views
CGImage, NSArray and Memory
This is a multiple part question, mostly because my ignorance on the matter has multiple layers.
First, I put together a caching system for caching CGImageRef objects. I keep it at the CGImageRef ...
2
votes
1answer
130 views
Getting 0 values for RGB when trying to change pixels in an CGImageRef data
Hi guys I am getting 0 for RGB values in this code. Any idea why? The inImage was created with this CGContext.
-(CGContextRef)createBitmapContextWide:(int) pixelsWide Height:(int) pixelsHigh{
...
2
votes
2answers
3k views
what is resolution of photo taken by iPhone 4 camera?
In specs,
iPhone 4 screen resolution & pixel
density
* iPhone 4 has a screen resolution of 960×640 pixels, which is twice that of
the prior iPhone models
As we know, when we code like ...
2
votes
1answer
1k views
Fatsest way to edit alpha of CGImage (or UIImage) with touch and then display?
I have two image views, one on top of the another, with two different images. As the user touches the image and moves his/her finger, the top image should become transparent along the touch points ...
2
votes
2answers
1k views
CGImage from byte array
Loading a CGImage or NSImage from a file using a standard image format (jpeg, gif, png et.) is all very simple.
However, I now need to create a CGImage from an array in bytes in memory generated ...
2
votes
2answers
3k views
How do I create a CGImage with RGB data?
Can anyone show me a clear example of how to use
CGImageRef CGImageCreate
(
size_t width,
size_t height,
size_t bitsPerComponent,
size_t bitsPerPixel,
size_t bytesPerRow,
...
1
vote
2answers
50 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)];
...
1
vote
1answer
58 views
How do I select an area of the screen and save it as a CGimage or CIImage?
I'm creating an application to capture a small area of the screen and compare it to a library of images saved to disk. I wrote a similar application a few years ago in .net and used bitblt and the ...
1
vote
0answers
79 views
iOS: Drawing a CGImage into a subclass of CALayer during custom property animation in correct resolution
I'm at the end of my wisdom...
I have a view which should display an animated circular section which is pre-rendered and available as png files (both retina and non-retina versions, correctly named; ...
1
vote
3answers
68 views
Draw CGImage in UITableView
So, I have a custom cell and I need to draw all images as CGImage in tableView, but I can't get it working. I have created a test project and tested the code with simple views. Everything worked ...
1
vote
2answers
133 views
New CALayer.contents does not display until view is resized
I have a CALayer that needs to display frames of video. Every time a frame is rendered (as a CGImageRef), this method is called:
- (void)displayFrame:(CGImageRef)frame {
[view layer].contents = ...
1
vote
2answers
215 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 ...
1
vote
0answers
206 views
CGImage gets stretched in CALayer
I have an NSMutableArray of CGImage objects. All the images have different dimensions ( 80x20 px, 200x200 px, 10x10 px, etc...)
I'm trying to animate these in CALayer which has 256x256 pixels size. ...
1
vote
1answer
254 views
Precise pixel grid overlay in Core Graphics?
In my experiments with creating a pixel-centered image editor I've been trying to draw a precise grid overlay to help guide users when trying to access certain pixels. However, the grid I draw isn't ...
1
vote
1answer
710 views
ALAssetsLibrary ALAssetsLibraryAccessUserDeniedError
When you first try to access a user's ALAssetsLibrary, the OS will present them with a dialog asking for permission. If they do not allow this, a failureBlock will be called and will always be called ...
1
vote
1answer
452 views
Can I edit the Alpha Mask of a UIImage in a UIImageView without have to move too much memory?
I want to take a image (a brush) and draw it into a displayed image. I only want to affect the alpha of that image, and I need to export it later.
From what I've seen, most directions only really get ...
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
1answer
374 views
iOS Retina Display Masking Bug
I'm currently using two images for a menu that I've built. I was using this code a while ago for normal display systems and it was working fine, with the retina display I'm having some issues with ...
1
vote
0answers
287 views
error with CGImageCreateWithImageProvider
I'm use rendering in drawRect, but first time I always get error:
< Error >: CGImageCreateWithImageProvider: invalid image size: 768 x 768.
I draw image with dimensions 768x500.
First time ...
1
vote
1answer
152 views
Trim alpha from CGImage
I need to get a trimmed CGImage. I have an image which has empty space (alpha = 0) around some colors and need to trim it to get the size of only the visible colors.
Thanks.
1
vote
1answer
1k views
iPhone CALayer image array contents values
The way to load image to the layer is simply this:
CALayer *layer = [[CALayer alloc]init];
layer.contents = (id) [UIImage imageNamed:@"image.png"].CGImage;
then you add the layer as sublayer to ...
1
vote
2answers
886 views
Correct way to release a UIColor PatternImage
I have a few, full screen, UIColor PatternImages (in scrollViews) in my iPad app and am experiencing some memory problems (surprise?)
When I started having memory issues, I implemented lazy loading in ...
1
vote
1answer
258 views
Quartz 2D: how apply UIImageView transformation to a CGImage?
i have an UIImageView that the user can rotate and resize touching the screen.
I want apply the same changes the user has made on the UIImageView to the UIImage inside it.
Then i will use the UIImage ...