TweetFollow Us on Twitter

Fun With Quartz Composer

Volume Number: 21 (2005)
Issue Number: 5
Column Tag: Programming

Fun With Quartz Composer

by Scott Knaster

Have you seen the incredible RSS Visualizer screen saver in Mac OS X Tiger? If you haven't, go check it out now: you'll find it in the Desktop & Screen Saver panel in System Preferences. Figure 1 gives you the flavor of what it looks like, but you really have to see the words swooping and twisting around on the screen to get the full astonishing effect.


Figure 1. RSS Visualizer is a hypnotically cool screen saver.

One of the best things about RSS Visualizer is that it wasn't created in the old-fashioned screen saver way by writing a little Cocoa program. Instead RSS Visualizer was built with no code whatsoever using a remarkable new tool called Quartz Composer. In this article, we're going to take a look at Quartz Composer and get a feel for what it does and how it works.

Quartz Composer is an application included with Xcode Tools 2.0. Quartz Composer lets you play with and learn about the cool Quartz graphics features built into Tiger without having to study APIs or write code. Documents you create with Quartz Composer, called compositions, can be turned into QuickTime movies or OS X screen savers. In this article, we'll use Quartz Composer to create a nifty screen saver without very much effort. It will take a little while to follow all the steps, but I promise the results will be worthwhile.

Here's a friendly warning: Quartz Composer is supercool and highly addictive. Before you start using it, be sure you have several hours (or perhaps an entire night) to dive in and try things out, because you might find it hard to walk away.

And now, let's get started.

Compose Yourself

To begin, go to /Developer/Applications/Graphic Tools and run Quartz Composer. As the program starts up, you might get an alert complaining that your Mac's video hardware won't support all the program's greatest features, but that's OK. If you get the alert, read what it says and click Continue.

Next, you see the New Composition Assistant offering several types of templates to start our composition. For this example, we're going to start from scratch, so just click Cancel to make the Assistant go away.

Use File > New to create a new, empty composition. You see two windows: The one that looks like a checkerboard is called the viewer; and the other is the editor.

On the left side of the editor window, make sure Patch Library is selected. In Quartz Composer, a patch is an individual graphical element or process. Patches are the building blocks you use to make compositions. We'll start this one with a cube. Look down the Name column in the Patch Library until you find the patch named Cube--it's in the Renderer category. Double-click Cube to add a cube patch to the composition. Instantly, if not sooner, a box labeled Cube shows up in the editor. There's also a cube showing in the viewer--you can't see it, because it has no color or texture yet, but you can tell it's there because it's blotting out the grid background (Figure 2).


Figure 2. Our composition starts with a cube. We only know it's there because part of the background is obscured in the viewer window.

Let's be honest about this: our cube is totally boring right now. Why, it's barely a cube at all. But if you take a look at the cube patch in the editor, you see that it has a bunch of values we can use to fill it that should make it far more interesting. Let's start by putting something on the front of the cube. In the Patch Library, find Image Importer (it's in the Generator category) and double-click to add one to the composition.

Note: when you're adding a patch to your composition, there are various ways to find the patch you're looking for. By default, the Patch Library is sorted by category. You might find it more useful to alphabetize the patch names--click the Name column to do that. If you know any part of the name of the patch or category, you can type text in the Search In Libraries field to get instant results. Note that some patches have a bullet in front of their names. The bullet indicates that these patches work best with graphics hardware that's not present on the computer running Quartz Composer, so they will run slowly if used on this computer. (The alert you might have seen when you started up Quartz Composer was warning about this.)

Click the new Image Importer patch to select it. Click the Inspector button in the toolbar (you can also choose Editor > Show Inspector or press Command-I).

In the Inspector, click the pop-up menu and choose Settings.

Face Front

Now you need to find a nice picture to put on a cube face. Click Import From File and navigate to any image you want in almost any format, including JPEG, TIFF, PNG, TIFF, and PDF. For best results, pick an image that's square or nearly so. If you can't find any images you like, look in the current user's Pictures folder. When you locate the image you want to use, double-click it. If you prefer, there's a cool shortcut: Drag an image file and drop it into the Image Data area in the Inspector. The image you picked should appear in the Image Data area.

Now we'll tell the cube to display the image you selected. In the editor, click the little circle next to the word Image in the Image Importer and drag to the circle next to Front Image in the Cube patch. You should see a spaghetti-like strand of yellow wire strung between the two circles or ports (Figure 3). Take a look in the viewer window--the cube now has the selected image on its face. It's not so lame any more.


Figure 3. All my tubes and wires, careful notes, and antiquated notions.

One of the most powerful features of Quartz Composer is its ability to create compositions that don't just sit there--they live, breathe, and move. To make your cube get active, you must change some of its settings repeatedly over time. In particular, if you change the rotation settings, the cube changes its orientation, and you see different parts of it. By changing the rotation values over and over, the cube spins. Quartz Composer includes a patch called an Interpolation that supplies an ever-changing stream of values. Find Interpolation in the patch library and double-click to add one to the composition.

Click the interpolation patch to select it, and then click Inspector to see its values. We want the cube to rotate by varying its orientation between 0 and 360 degrees, so we ask the interpolation to supply values that go from 0 to 360. In the Inspector, click the pop-up menu and choose Input Parameters. Leave Start Value at 0 and change End Value to 360. The Duration value determines how many seconds it takes to complete the interpolation. Set that value to 20. Leave the other values as they are.

Now that you have a source of values from 0 to 360, you need to supply those values to the cube for its rotation. Drag from the Result port of the Interpolation to the X Rotation port of the cube. Take a look at the viewer window. The cube is in motion! You should see the cube tumbling endlessly forward, all faces white except for the front, which still has an image on it. That's pretty neat, but we're just getting started.

Getting To Spin Alley

Because the cube is only changing its x-rotation, we never see its left and right sides. To fix that, we can spin the cube on its y-axis at the same time, and offset the z-rotation a bit (but not change it continuously). In the editor, drag another connection from the Results port, this time hooking it to the cube's Y Rotation. Click the Cube patch, and then click the Inspector button. Go to the Input Parameters panel. In the Z Rotation field, type 90, and then close the Inspector. Now the cube is tumbling, and all six faces eventually come into view.

Quartz Composer is drawing the cube over and over again, but something is missing: You see only one frame of the cube animation at a time. What's happening to the previous frames? As a development and debugging aid, Quartz Composer automatically erases the viewer before every redraw. This automatic erasing won't happen when you use the composition outside Quartz Composer. To see what that will look like, choose Viewer > Disable Background Erasing and take a look at the viewer. You soon get a big smear of cubes everywhere it's been drawn (Figure 4). That's not what you want. To prevent this from happening, you need a patch that erases each old frame of the cube before drawing a new one. Find the Clear patch in the Patch Library and double-click to create one.


Figure 4. The cube draws over itself repeatedly and eventually creates a big ugly mess.

You've added the Clear patch, and now the viewer window is...completely black! Nice job, Picasso! What's gone wrong? Take a look at the yellow numbers in the upper-right corner of the Cube and Clear patches. The number for Cube is 1, and Clear is 2. These numbers represent the rendering layer for each patch. Because the Clear patch was just added, it got rendering layer 2, the last layer in this composition. Quartz Composer draws compositions into an offscreen buffer, then moves the result onto the screen. Compositions are processed in order of their rendering layers. So each time through the composition, the cube is drawn (rendering layer 1), then cleared to black (rendering layer 2), then drawn on the screen! That's why you're seeing only a black screen in the viewer.

To fix this problem, we need to reverse the order: clear the screen first, and then draw the cube. To make this change, Control-click the title of the Clear patch and choose Rendering Layer. Now pick Layer 1. Note that the Rotating Cube's layer automatically changes to 2, and in the viewer window, your cube is back with the background now cleared to black, just as nature intended.

Picture This

Sure, you've got a lovely rotating cube, but five of the faces are blank. That's still some boring cube! We can make it better by putting things on the other faces, using various patches to show how cool Quartz Composer is. Start by adding an image from a Web page. Find the Image Downloader patch and double-click to add one. Open the Inspector, go to the Input Parameters panel, and type http://images.apple.com/home/2005/images/ipodfamilyphoto20050223.jpg into the Image URL field.

Connect the Image port of the Image Downloader patch to the cube's Left Image port. The Web image should instantly appear on the right face of the tumbling cube. (If it doesn't, double-check to make sure you typed the URL correctly, or type the URL of another image on the web.)

The next face is practical: it's going to show the time of day. To make it, add three patches: System Time, Date Formatter, and Image With String. Run a wire from System Time to Date Formatter via their Time ports. Make a connection from Date Formatter to Image With String using their String ports. Finally, connect the Image output from Image With String to the Right Image port on the cube. Now you have the time of day on the right face of the cube.

The time display is kind of messy: it's scaled and hard to read, certainly not up to our fancy-pants graphics standards. Let's fix that. Click Image With String, then click Inspector, and go to the Settings panel. Change both the Horizontal and Vertical Alignment to Center. Pick a different font if you like. Click Fixed Dimensions (in pixels). Fill in an Image Size of 1024 by 1024, and a font size of 200. Ah, the time now looks a lot better.

Showtime

Wouldn't it be cool if one of the cube faces continuously showed a QuickTime movie clip? Let's do it. Add an Image With Movie patch to the composition and open the Inspector. Go to the Input Parameters panel and type the path to a QuickTime movie (for example, /Users/yourName/Documents/myMovie.mov, or download a movie trailer from www.apple.com/quicktime and then type its local path). Connect the Image With Movie patch's Image output to the Cube's Top Image input. Take a look at the viewer--you should see the movie playing on the cube's top face as it rotates into and out of view. Awesome! Figure 5 shows the composition at this point.


Figure 5. The composition now has images on four faces (this picture shows three).

There are still two blank faces on the cube, but I'll leave those to you and your creativity now that you have a feel for how it works. Here are some ideas you can use to dress up those faces:

Use a Host Info patch to display various bits of interesting and obscure information, such as the current user name, computer name, OS version, or CPU load.

Set the background color of the cube faces by using the Inspector to change the Front Color, Left Color, and so on.

Hook an Interpolation patch to an RGB Color patch to continually change the colors you put on the faces.

When you're all done with the cube, it's easy to make it into a screen saver. Just use File > Save As and navigate to the current user's Library/Screen Savers folder. Save the composition into that folder. When you go to System Preferences and click Desktop & Screen Saver, you see your composition at the bottom of the list, available as an official screen saver. Click, select, and enjoy.

Note that when you install Tiger, it doesn't create the user's Library/Screen Savers folder by default. If you navigate there and find no such folder, you can click the New Folder button in the Save dialog to create it.

Like Disneyland, a Quartz Composer document is never truly finished as long as there is imagination left in the world. If you want to play more with Quartz Composer, here are a just a few of the many interesting features you might want to investigate:

Use a Lighting patch to get the nifty effect of shining a light on objects in your composition.

Check out the Clip Library in the editor window to add a pulsating Apple logo or shimmering background.

Add a Mouse controller to use the mouse to slide your objects around on the screen. This won't work in a screen saver because moving the mouse deactivates the screen saver.

Grab a Random patch to feed random inputs to an object, such as the location values for a cube, to make it warp around the screen.

Tiger's RSS Visualizer screen saver, built with Quartz Composer, uses patches that read RSS feeds and display them in a composition, among many other cool features. You can open RSS Visualizer in Quartz Composer and spend hours or days studying it. If you do, you'll get a strong education in the features of Quartz Composer.

For more ideas about what you can do with Quartz Composer, check out the folder at /Developer/Examples/Quartz Composer. Quartz Composer is an amazing tool for creating beautiful images without any programming. Enjoy exploring it - but don't forget to go back to your regular life from time to time.


Scott Knaster lives a glamorous life that consists mostly of sitting in a chair and typing on a keyboard. Scott recently completed his latest book, Hacking Mac OS X Tiger, to be published in July by Wiley. This article is based on material in that book. Scott is a recovering Quartz Composer addict.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »
Explore some of BBCs' most iconic s...
Despite your personal opinion on the BBC at a managerial level, it is undeniable that it has overseen some fantastic British shows in the past, and now thanks to a partnership with Roblox, players will be able to interact with some of these... | Read more »
Play Together teams up with Sanrio to br...
I was quite surprised to learn that the massive social network game Play Together had never collaborated with the globally popular Sanrio IP, it seems like the perfect team. Well, this glaring omission has now been rectified, as that instantly... | Read more »
Dark and Darker Mobile gets a new teaser...
Bluehole Studio and KRAFTON have released a new teaser trailer for their upcoming loot extravaganza Dark and Darker Mobile. Alongside this look into the underside of treasure hunting, we have received a few pieces of information about gameplay... | Read more »
DOFUS Touch relaunches on the global sta...
After being a big part of a lot of gamers - or at the very least my - school years with Dofus and Wakfu, Ankama sort of shied away from the global stage a bit before staging a big comeback with Waven last year. Now, the France-based developers are... | Read more »

Price Scanner via MacPrices.net

Sunday Sale: 13-inch M3 MacBook Air for $999,...
Several Apple retailers have the new 13″ MacBook Air with an M3 CPU in stock and on sale today for only $999 in Midnight. These are the lowest prices currently available for new 13″ M3 MacBook Airs... Read more
Multiple Apple retailers are offering 13-inch...
Several Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices... Read more
Roundup of Verizon’s April Apple iPhone Promo...
Verizon is offering a number of iPhone deals for the month of April. Switch, and open a new of service, and you can qualify for a free iPhone 15 or heavy monthly discounts on other models: – 128GB... Read more
B&H has 16-inch MacBook Pros on sale for...
Apple 16″ MacBook Pros with M3 Pro and M3 Max CPUs are in stock and on sale today for $200-$300 off MSRP at B&H Photo. Their prices are among the lowest currently available for these models. B... Read more
Updated Mac Desktop Price Trackers
Our Apple award-winning Mac desktop price trackers are the best place to look for the lowest prices and latest sales on all the latest computers. Scan our price trackers for the latest information on... Read more
9th-generation iPads on sale for $80 off MSRP...
Best Buy has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80 off MSRP on their online store for a limited time. Prices start at only $249. Sale prices for online orders only, in-store prices... Read more
15-inch M3 MacBook Airs on sale for $100 off...
Best Buy has Apple 15″ MacBook Airs with M3 CPUs on sale for $100 off MSRP on their online store. Prices valid for online orders only, in-store prices may vary. Order online and choose free shipping... Read more
24-inch M3 iMacs now on sale for $150 off MSR...
Amazon is now offering a $150 discount on Apple’s new M3-powered 24″ iMacs. Prices start at $1149 for models with 8GB of RAM and 256GB of storage: – 24″ M3 iMac/8-core GPU/8GB/256GB: $1149.99, $150... Read more
15-inch M3 MacBook Airs now on sale for $150...
Amazon is now offering a $150 discount on Apple’s new M3-powered 15″ MacBook Airs. Prices start at $1149 for models with 8GB of RAM and 256GB of storage: – 15″ M3 MacBook Air/8GB/256GB: $1149.99, $... Read more
The latest Apple Education discounts on MacBo...
If you’re a student, teacher, or staff member at any educational institution, you can use your .edu email address when ordering at Apple Education to take up to $300 off the purchase of a new MacBook... Read more

Jobs Board

Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Retail Assistant Manager- *Apple* Blossom Ma...
Retail Assistant Manager- APPLE BLOSSOM MALL Brand: Bath & Body Works Location: Winchester, VA, US Location Type: On-site Job ID: 04225 Job Area: Store: Management Read more
Housekeeper, *Apple* Valley Village - Cassi...
Apple Valley Village Health Care Center, a senior care campus, is hiring a Part-Time Housekeeper to join our team! We will train you for this position! In this role, Read more
Sonographer - *Apple* Hill Imaging Center -...
Sonographer - Apple Hill Imaging Center - Evenings Location: York Hospital, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now See Read more
Senior Software Engineer - *Apple* Fundamen...
…center of Microsoft's efforts to empower our users to do more. The Apple Fundamentals team focused on defining and improving the end-to-end developer experience in Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.