Documentation

The Java™ Tutorials
Hide TOC
Printing
Trail: 2D Graphics

Lesson: Printing

Since the Java 2D API enables you to draw on any surface, a natural extension of that is the ability to print Java 2D graphics. A printer can be considered a graphics device just like a display.

The Java 2D printing API is not limited to printing graphics. It enables you to print the content of an application's user interface as well. Content can be printed by sending raw data to the printer under the formatting control of the Java 2D printing API, or by using the Java 2D Graphics API.

In this lesson you will explore the printer and job control functions of the Java 2D printing API which are complements to the rendering elements. You will learn how to look up printers configured on the system or network and discover information about these printers such as the paper sizes it supports, and selecting these attributes for printing, and user dialogs.

The main classes and interfaces involved in printing are represented in the java.awt.print and javax.print packages (the last package allows you to get access to the printing services).

The basic printing operations are represented in the following sections:


Previous page: Previous Lesson
Next page: A Basic Printing Program