Top "Core-graphics" questions

Core Graphics is Apple's framework for low-level drawing operations on Mac OS X and iOS.

How to draw polygons with CGPath?

I have been reading thru the documentation however it is not immediatly clear to me how to draw a polygon …

iphone core-graphics polygon draw cgpath
Saving and restoring CGContext

I'm trying to save and restore a CGContext to avoid doing heavy drawing computations for a second time and I'm …

iphone core-graphics quartz-graphics cgcontext
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 …

iphone uikit core-graphics quartz-graphics
How to draw heart shape in UIView (iOS)?

I want to create different shapes. Below image is the one of example. Will you suggest me how to different …

ios core-graphics cgcontext uibezierpath
Creating PDF file from UIWebView

-(void)createPDFfromUIView:(UIView*)aView saveToDocumentsWithFileName:(NSString*)aFilename { // Creates a mutable data object for updating with binary data, like a …

ios pdf uiwebview core-graphics crop
to drawRect or not to drawRect (when should one use drawRect/Core Graphics vs subviews/images and why?)

To clarify the purpose of this question: I know HOW to create complicated views with both subviews and using drawRect. …

iphone ios core-graphics
Mac OS X: Drawing into an offscreen NSGraphicsContext using CGContextRef C functions has no effect. Why?

Mac OS X 10.7.4 I am drawing into an offscreen graphics context created via +[NSGraphicsContext graphicsContextWithBitmapImageRep:]. When I draw into this …

objective-c macos cocoa core-graphics quartz-2d
How to compensate the flipped coordinate system of core graphics for easy drawing?

It's really a pain, but always when I draw an UIImage in -drawRect:, it's upside-down. When I flip the coordinates, …

iphone core-graphics
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 …

iphone core-graphics quartz-graphics