Mac OS X has unsurpassed graphics and imaging technologies. The most challenging part of getting started is deciding which one to use first.
Quartz 2D, part of the Core Graphics framework, is an advanced, 2D drawing engine that is resolution- and device-independent. Its powerful features include transparency layers, path-based drawing, offscreen rendering, and advanced color management, as well as PDF document creation, display, and parsing.
Core Image lets you use built-in image-processing filters to process still and video images. You can also use it to write your own filters.
Core Video provides a modern video pipeline. Among other things, it takes care of display synchronization issues for you and makes switching between uncompressed video frames and OpenGL or Core Image easy.
Core Animation adds smooth motion and dynamic feedback to the user interface.
OpenGL is a cross-platform, standards-based, 3D graphics library. OpenGL provides a broad set of rendering, texture mapping, special effects, and other powerful visualization functions. It underlies other Mac OS X graphics technologies, which means that your application can benefit from OpenGL even if you are not explicitly using it.
QuickTime—Apple’s cross-platform multimedia technology—lets you combine audio, video, still images, and text in a single application.
Mac OS X graphics and imaging technologies leverage the power of the graphics hardware whenever possible. They hide the details of low-level graphics processing by providing easy-to-use application programming interfaces.

To write graphics code on Mac OS X, you should:
Decide whether you need to do 2D or 3D graphics.
Determine whether your application needs to play back video or movie samples.
Choose next how you want to get started—by reading about the basics, getting your hands on some code, or diving into specific technologies.
Want to get familiar with the fundamentals?
Read Cocoa Drawing Guide to learn about the drawing classes, how to draw inside a Cocoa view, and how to instantiate and draw images defined in graphics files.
Read Overview of Quartz 2D for an introduction to the Quartz 2D imaging model and drawing API.
Read Core Image Programming Guide to get an understanding of the basic concepts and to learn how to use the Core Image API.
Read Core Video Programming Guide to understand the Mac OS X video model and to learn how to manipulate video frames using the Core Video API. You may also want to read QuickTime Compression and Decompression Guide to learn about video compression and decompression.
Read Animation Overview to get an introduction to the animation capabilities provided by Mac OS X.
If you’re completely new to OpenGL programming, you first need to understand the fundamental concepts and techniques covered in OpenGL Programming Guide, by Dave Shreiner and others (Addison-Wesley).
Prefer to learn by example?
Quartz2DBasics demonstrates many common Quartz graphics calls.
Cocoa OpenGL shows how to access OpenGL from within a Cocoa application.
QTCoreVideo101 is a good place for people interested in seeing how QuickTime, Core Video, and OpenGL work together.
CALayerEssentials demonstrates how to set up Core Animation layers.
Are you familiar with OpenGL on another platform?
If you’ve used OpenGL on another platform, read OpenGL Programming Guide for Mac OS X, which describes how to get started on the Mac OS using the C programming language and also includes a tutorial on using OpenGL in Cocoa.
Sometimes you need to dig deeper into a graphics technology.
Learning to Draw with Quartz 2D
Read Quartz 2D Programming Guide to learn how to use the Quartz 2D API to accomplish just about any drawing Quartz is capable of performing.
Refer to Quartz 2D Reference Collection as necessary to learn more about Quartz opaque types and their associated functions and constants.
Read Core Animation Programming Guide to learn how to use the Core Animation API.
To learn how to display a single image in a frame, read Image Views.
Core Animation
Refer to Core Animation Reference Collection as necessary to learn details of the Core Animation API.
The Graphics and Animation page in the Reference Library holds plenty more resources that make your job easier. To narrow the list of resources, you can set filters to focus on specific resource types (such as guides or sample code) or on specific topics (such as OpenGL or QuickTime).
Last updated: 2009-05-28