Tagged Questions

Core Graphics is Apple's framework for low-level drawing operations on Mac OS X ([osx]) and iOS ([iphone]/[ipad]). The term “Core Graphics” can actually apply to multiple frameworks. If your question is about any CG class, regardless of which framework it came from, then it is a Core Graphics question. For example, questions about CGImageSource (from ImageIO.framework) are as much Core Graphics questions as questions about CGContext (from

learn more… | top users | synonyms (1)

212
votes
7answers
56k views

UIImagePickerController, UIImage, Memory and More? [closed]

I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
40
votes
7answers
37k views

UIImage: Resize, then Crop

I've been bashing my face into this one for literally days now, and even though I feel constantly that I am right on the edge of revelation, I simply cannot achieve my goal. I thought, ahead of time ...
37
votes
4answers
24k views

How do I draw a shadow under a UIView?

I'm trying to draw a shadow under the bottom edge of a UIView in Cocoa Touch. I understand that I should use CGContextSetShadow() to draw the shadow, but the Quartz 2D programming guide is a little ...
34
votes
5answers
35k views

How to get pixel data from a UIImage (Cocoa Touch) or CGImage (Core Graphics)?

I have a UIImage (Cocoa Touch). From that, I'm happy to get a CGImage or anything else you'd like that's available. I'd like to write this function: - (int)getRGBAFromImage:(UIImage *)image ...
31
votes
8answers
33k views

CGContextDrawImage draws image upside down when passed UIImage.CGImage

Does anyone know why CGContextDrawImage would be drawing my image upside down? I am loading an image in from my application: UIImage *image = [UIImage imageNamed:@"testImage.png"]; And then simply ...
21
votes
6answers
30k views

How to Rotate a UIImage 90 degrees?

I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
19
votes
1answer
588 views

Mixing Quartz and OpenGL?

I am trying to find out what actually happens in background when we do this (please see the image) As you can see in image I have added few buttons and have checked Content View from Interface ...
16
votes
5answers
6k views

NSLog with CGPoint data

I have a CGPoint called point that is being assigned a touch: UITouch *touch = [touches anyObject]; CGPoint point = [touch locationInView:self]; I want to get the x coordinate value into my ...
15
votes
4answers
466 views

How to change a particular color in an image?

My question is if I have a Lion image just I want to change the color of the lion alone not the background color. For that I referred this SO question but it turns the color of whole image. Moreover ...
14
votes
3answers
571 views

iOS: what's the fastest, most performant way to make a screenshot programatically?

in my iPad app, I'd like to make a screenshot of a UIView taking a big part of the screen. Unfortunately, the subviews are pretty deeply nested, so it takes to long to make the screenshot and animate ...
12
votes
2answers
1k views

What does yellow tinting represent when using “color misaligned images” on iPhone/iOS

so--i switched on "color misaligned images" to improve drawing performance in our app (Spot). The documentation states: Puts a magenta overlay over images whose source pixels aren't aligned to ...
12
votes
4answers
4k views

PDF parsing library for iOS?

I wonder if there is a higher-level library for parsing PDF files in iOS (iPhone, iPad, iOS version 3.2) ? Specifically I'm looking for functionalities such as I can highlight a word or a sentence ...
12
votes
4answers
6k views

Retrieving a pixel alpha value for a UIImage

I am currently trying to obtain the alpha value of a pixel in a UIImageView. I have obtained the CGImage from [UIImageView image] and created a RGBA byte array from this. Alpha is premultiplied. ...
12
votes
6answers
14k views

Extracting rgb from UIColor

Seen this asked before but my example does not seem to work. const CGFloat *toCol = CGColorGetComponents([[UIColor greenColor] CGColor]); The array is empty from looking at it with GDB. Any hints? ...
10
votes
3answers
319 views

How do I lower the amount of memory IOKit reserves at process start up?

I am a developer working on a very large, memory intensive 32bit application. Running out of virtual address space (memory) is a problem for us. During my investigation of some recent issues I ...
10
votes
5answers
13k views

How do I make UILabel display outlined text?

All I want is a one pixel black border around my white UILabel text. I got as far as subclassing UILabel with the code below, which I clumsily cobbled together from a few tangentially related online ...
10
votes
2answers
4k views

How to create a colored 1x1 UIImage on the iPhone dynamically?

I would like to create a 1x1 UIImage dynamically based on a UIColor. I suspect this can quickly be done with Quartz2d, and I'm poring over the documentation trying to get a grasp of the fundamentals. ...
9
votes
3answers
267 views

How to paint a good RGB color map?

I'm trying to paint a full RGB color map that eventually will allow a user to select a color by tapping that visual map at any point. My current code is the following: - (void)drawRect:(CGRect)rect { ...
9
votes
4answers
6k views

Inner shadow effect on UIView layer?

I have the following CALayer: CAGradientLayer *gradient = [CAGradientLayer layer]; gradient.frame = CGRectMake(8, 57, 296, 30); gradient.cornerRadius = 3.0f; gradient.colors = [NSArray ...
9
votes
2answers
4k views

What are some great Quartz 2D drawing tutorials?

I'm searching for some great Quartz 2D drawing tutorials aimed at the iPhone. I'm new to Quartz and want to start off with something easy and then progress to more difficult stuff. Does anyone know ...
9
votes
4answers
863 views

Equivalent of CGPoint with integers?

Cheers, I like strict typing in C. Therefore, I don't want to store a 2D vector of floats if I specifically need integers. Is there an Apple-provided equivalent of CGPoint which stores data as ...
9
votes
2answers
5k views

“kCGColorSpaceGenericRGB” is deprecated on iPhone?

I'm trying to get bitmap context with the following code: GContextRef MyCreateBitmapContext (int pixelsWide, int pixelsHigh) { CGContextRef context = NULL; ...
9
votes
3answers
13k views

Can I use CGAffineTransformMakeRotation to rotate a view more than 360 degrees?

I'm writing an iPhone app, and I've got an image which I'ld like to have swirl outwards. Currently my code looks like this (wrapped in a beginAnimations/commitAnimations block): scale = ...
8
votes
3answers
3k views

Problem setting exif data for an image

I'm using the new ImageIO framework in iOS 4.1. I successfully retrieve the exif metadata using the following: CFDictionaryRef metadataDict = CMGetAttachment(sampleBuffer, ...
8
votes
4answers
4k views

How can I change the saturation of an UIImage?

I have an UIImage and want to shift it's saturation about +10%. Are there standard methods or functions that can be used for this?
8
votes
7answers
5k views

iPhone board game: OpenGL ES or CoreGraphics?

I want to program a board game (similar to checkers) for the iPhone. Would OpenGL ES or CoreGraphics be a better option? What do most games of this type on the App Store use?
8
votes
2answers
5k views

CATransform3D vs. CGAffineTransform?

Whats the difference between the two? I'm sure they have pros and cons, and situations they are better performers in. Any resources that compare the two? Is one better for animation (I imagine ...
7
votes
2answers
152 views

Why must I free this data? Am I the owner?

This is strange. In a technical Q & A, Apple says this: void *data = CGBitmapContextGetData (cgctx); if (data != NULL) { // **** You have a pointer to the image data **** // **** Do ...
7
votes
1answer
462 views

Why is my CGGradient not working with a preset UIColor?

I have this working code: NSMutableArray *shadowColors = [NSMutableArray arrayWithCapacity:2]; color = [UIColor colorWithRed:0 green:0 blue:0 alpha:1]; // Declaration using components ...
7
votes
6answers
5k views

How to display an image on a MKOverlayView?

UPDATE: Images who are projected on the MKMapView using a MKOverlayView use the Mercator projection, while the image that I use as input data uses a WGS84 projection. Is there a way to convert the ...
7
votes
1answer
686 views

How to obtain a CGImageRef from the content of an UIView?

I have an UIView where I was drawing some stuff inside -drawRect:. Now I need a CGImageRef from this graphics context or bitmap of the UIView. Is there an easy way to get that?
7
votes
2answers
8k views

How to create a UIImage from the current graphics context?

I'd like to create a UIImage object from the current graphics context. More specifically, my use case is a view that the user can draw lines on. They may draw incrementally. After they are done, ...
7
votes
3answers
2k views

Is it possible to alter the letter-spacing/kerning of a font with Cocoa Touch?

I've been scouring the Internet for a while now for information on how one can alter the letter-spacing/kerning of a font within UIKit. My fear is, that like using your own custom fonts, you simply ...
7
votes
5answers
3k views

Using Core Graphics/ Cocoa, can you draw to a bitmap context from a background thread?

I'm drawing offscreen to a CGContext created using CGBitmapContextCreate, then later generating a CGImage from it with CGBitmapContextCreateImage and drawing that onto my view in drawRect (I'm also ...
6
votes
1answer
1k views

CoreGraphics for retina display

I am using the following code to perform some manipulations on the image that I loaded, but I find that the display becomes blurry when it is on the retina display - ...
6
votes
1answer
584 views

How to resolve CGDirectDisplayID changing issues on newer multi-GPU Apple laptops in Core Foundation/IO Kit?

In Mac OS X, every display gets a unique CGDirectDisplayID number assigned to it. You can use CGGetActiveDisplayList() or [NSScreen screens] to access them, among others. Per Apple's docs: A ...
6
votes
2answers
4k views

Draw underlined / strikethrough text ( MULTILINE STRING )?

I have to draw underlined-multiline text with all types of text alignment. I have searched on forums and got some results like: ...
6
votes
4answers
1k views

How would I draw something like this in Core Graphics

I want to be able to draw using this as my stroke. How would I do this as efficient as possible, and on the fly drawing, I was thinking CGPatternRef, but I really don't know how to do that. Edit: It ...
6
votes
1answer
3k views

What's the difference between Quartz Core, Core Graphics and Quartz 2D?

I wonder if someone can distinguish precisely between these? For my understanding, Core Graphics is just a "Framework Package" which contains Quartz Core and Quartz 2D. But I'm not sure about if ...
6
votes
2answers
2k views

Animating a shape with CoreAnimation

I approaching core animation and drawing empirically. I am trying to animate a simple shape; the shape in question is formed by 3 lines plus a bezier curve. A red line is also drawn, to show the curve ...
6
votes
2answers
4k views

Resize UIImage with aspect ratio?

I'm using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect ...
6
votes
7answers
4k views

imageWithCGImage and memory

If I use [UIImage imageWithCGImage:], passing in a CGImageRef, do I then release the CGImageRef or does UIImage take care of this itself when it is deallocated? The documentation isn't entirely ...
6
votes
2answers
3k views

CGContext - is there a way to reset the current context

In my iPhone project, I've got a UIView where I implement the drawRect method: - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); Inside the method I do a ...
5
votes
1answer
107 views

Float comparison (equality) in CoreGraphics

Apple CoreGraphics.framework, CGGeometry.h: CG_INLINE bool __CGSizeEqualToSize(CGSize size1, CGSize size2) { return size1.width == size2.width && size1.height == size2.height; } #define ...
5
votes
1answer
316 views

Returning an autorelease'd CFTypeRef with ARC

I am new to Automatic Reference Counting with LLVM and Objective-C, and have a question about returning CGImageRefs from my Objective-C function. In the days of manual reference counting, it was ...
5
votes
3answers
261 views

Force a window to redraw itself using Core Graphics?

I have developed injection system and have hooked some quartz API's to create some nice effects with windows on Mac OS X. For example, when user sets a color to red in window.. it is red glossy red. ...
5
votes
2answers
88 views

How should I design displaying a dynamic map? (Coordinates + Lines)

So I want to have a view (NSView, NSOpenGLView, something CG related?) which basically displays a map. Such as: http://dump.tanaris4.com/map.png Obviously that looks horrible, but I did it using an ...
5
votes
2answers
183 views

Images vs. Core Graphics

On iOS devices, in which occasions is it better to draw graphics using Core Graphics than using image files? What are the advantages of doing so in terms of resources?
5
votes
2answers
190 views

Why is the join not rounded when the line doubles back on itself?

I have the following code: - (void)drawRect:(CGRect)rect { CGContextRef c = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(c, [UIColor blackColor].CGColor); ...
5
votes
2answers
502 views

What's the best approach to draw lines between views?

Background: I have a custom scrollview (subclassed) that has uiimageviews on it that are draggable, based on the drags I need to draw some lines dynamically in a subview of the uiscrollview. (Note I ...

1 2 3 4 5 26