12 Graphics and Java 2D™.

Slides:



Advertisements
Similar presentations
Custom Painting Gestione della Grafica customizzata Vedi anche:
Advertisements

Applets and Graphics.
Chapter 15 Graphics. To paint, you need to specify where to paint. Each component has its own coordinate system with the origin (0, 0) at the upper-left.
2D Graphics Drawing Things. Graphics In your GUI, you might want to draw graphics E.g. draw lines, circles, shapes, draw strings etc The Graphics class.
Graphics You draw on a Graphics object The Graphics object cannot directly be created by your code, instead one is generated when the method paintComponent.
Graphics Chapter 16.  If you want to draw shapes such as a bar chart, a clock, or a stop sign, how do you do it?
Graphics Programming. Introduction GOAL: Build the Indexer Client Event-driven vs. Sequential programs Terminology – Top-level windows are called “frame.
Zhang & Liang, Computer Graphics Using Java 2D and 3D (c) 2007 Pearson Education, Inc. All rights reserved. 1 Chapter 2 2D Graphics: Basics.
Graphics CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Georgia Institute of Technology Drawing in Java – part 2 Barb Ericson Georgia Institute of Technology September 2005.
CSC1401 Drawing in Java - 2. Reminder from last class How do you save your modified picture? String filename = …; Picture stevePicture = new Picture(filename);
Draw Shapes Introduction to simple graphics. What is a graphics context? An instance of the Graphics class Graphics is ABSTRACT! You can extend Graphics.
Java Graphics Section 1 - Multi-File Graphics Programs Section 2 - The Coordinate System and Graphics Context g Section 3 - The Java Drawing and Painting.
1 Graphics -- Introduction zThe use of graphics is common among modern software systems  Java has strong API support for graphics in the java.awt (abstract.
GUI and Swing, part 2 The illustrated edition. Scroll bars As we have previously seen, a JTextArea has a fixed size, but the amount of text that can be.
Graphics in Java Part II. Lecture Objectives Learn how to use Graphics in Java.
1 L36 Graphics and Java 2D™ (1). 2 OBJECTIVES  To understand graphics contexts and graphics objects.  To understand and be able to manipulate colors.
1 Chapter 15 l Basic Figures l Colors l Fonts and Other Text Details Graphics Objects.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 28 - Java Graphics and Java2D Outline 28.1Introduction 28.2Graphics Contexts and Graphics Objects.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Topics  Applets  Classes used for graphics Graphics Point Dimension.
1 L37 Graphics and Java 2D™ (2). 2 OBJECTIVES To use methods of class Graphics to draw lines,  rectangles,  rectangles with rounded corners,  three-dimensional.
May 11, 1998CS102-02Lecture 7-1 More Graphics in Java CS Lecture 7-1 A picture's worth a thousand words.
 2005 Pearson Education, Inc. All rights reserved Graphics and Java 2D™
1 L38 Graphics and Java 2D™ (3). 2 OBJECTIVES In this chapter you will learn:  To understand graphics contexts and graphics objects.  To understand.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Chapter 5 Java Graphics Applets.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Chapter 5 Applets and Graphics.
Swing Graphics ● Empty Swing containers have no visual appearance except for a background color ● Every JComponent must have a paintComponent method that.
Drawing pictures with Java. JFrame: the basic Java window The swing package contains classes, objects and methods that can be used to create a consistent.
CS324e - Elements of Graphics and Visualization Java2D Graphics.
Chapter 16: Graphics. Objectives Learn about the paint() and repaint() methods Use the drawString() method to draw String s using various fonts and colors.
Java Software Solutions Lewis and Loftus Chapter 7 1 Copyright 1997 by John Lewis and William Loftus. All rights reserved. Graphics -- Introduction The.
1 Graphical User Components (II) Outline JTextArea Creating a Customized Subclass of JPanel JPanel Subclass that Handles Its Own Events Windows: Additional.
Modernās Programmēšanas Tehnoloģijas (Advanced Programming Technologies) Edgars Celms, Mārtiņš Opmanis Latvijas Universitātes Matemātikas.
(C) 2010 Pearson Education, Inc. All rights reserved. Omer Boyaci.
Chapter 15 Graphics and Java 2D™ Java How to Program, 8/e (C) 2010 Pearson Education, Inc. All rights reserved.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 28 - Java Graphics and Java2D Outline 28.1Introduction.
Chapter 28 - Java Graphics and Java2D Outline 28.1Introduction 28.2Graphics Contexts and Graphics Objects 28.3Color Control 28.4Font Control 28.5Drawing.
 Pearson Education, Inc. All rights reserved. 1 Ch 12 Graphics and Java 2D In this chapter you will learn:  To understand graphics contexts.
Lecture 15: Intro to Graphics Yoni Fridman 7/25/01 7/25/01.
Graphics and Java 2D. 2 Introduction Java’s graphics capabilities –Drawing 2D shapes –Controlling colors –Controlling fonts Java 2D API –More sophisticated.
Chapter 15Java: an Introduction to Computer Science & Programming - Walter Savitch 1 Chapter 15 l Basic Figures l Colors l Fonts and Other Text Details.
Chapter 7 Graphics. © Daly and Wrigley Objectives Use Graphic Components: ▫ Strings ▫ Lines ▫ Rectangles ▫ Ovals ▫ Arcs Change the color and font of elements.
Graphics & Java 2D Drawing Two Dimensional Shapes Controlling Fonts Controlling Colors.
1 Chapter 3 2D Graphics: Rendering Details  Color spaces, paints stroke types  Affine transforms including translation, rotation, scaling, shearing,
 2000 Prentice Hall, Inc. All rights reserved. Chapter 11 - Graphics and Java2D Outline 11.1Introduction 11.2Graphics Contexts and Graphics Objects 11.3Color.
(C) 2010 Pearson Education, Inc. All rights reserved.  Class Graphics (from package java.awt) provides various methods for drawing text and shapes onto.
Merete S COLLEGEFACULTY OF ENGINEERING & SCIENCE Graphics ikt403 – Object-Oriented Software Development.
Introduction to Java Chapter 8 - Introduction to Java Graphics1 Chapter 8 Introduction to Java Graphics.
Painting (Chapter 12) Java Certification Study Group January 25, 1999 Mark Roth.
Creating Graphics in Java CSE301 University of Sunderland Harry R Erwin, PhD.
Chapter 2: Graphics In Java Basics of classes –instance variables –methods –overriding methods Graphics class (drawing routines) Other classes –Color –Font.
Graphics and Java2D Chapter Java Coordinate System Origin is in _____________ corner –Behind title bar of window X values increase to the ________.
1 Drawing C Sc 335 Object-Oriented Programming and Design Rick Mercer.
Projects: not limited to spec Error checking File filters Create multiple file formats Polygons Filled shapes Etc.
Georgia Institute of Technology Drawing in Java – part 2 Dr Usman Saeed Assistant Professor Faculty of Computing and Information Technology North Jeddah.
10/20/2005week71 Graphics, mouse and mouse motion events, KeyEvent Agenda Classes in AWT for graphics Example java programs –Graphics –Mouse events –Mouse.
Graphics Drawing Things With Java. Today's Topics Course Updates Java Graphics –Java 1.1 versus Java 1.2 (Java 2) Drawing Lines Drawing Shapes.
Java Graphics and Java2D
Intro to Graphics from Chapter 2 of Java Software Solutions
Eleventh Graphics in Java.
Chapter 8 Graphics.
Graphics Chapter 6 Copyright © 2000 W. W. Norton & Company.
Java Graphics CS 2511.
JAVA 2 Design and programming of GUI
Chapter 10 Graphics.
Java Graphics The basic rendering mechanism is the drawing system that controls when and how programs can draw on a graphics component. When a component.
4.14 GUI and Graphics Case Study: Creating Simple Drawings (Cont.)
Graphics -- Introduction
12 Graphics and Java 2D™.
Chapter 8 Graphics.
Presentation transcript:

12 Graphics and Java 2D™

Color Control Class Color declares methods and constants for manipulating colors in a Java program Every color is created from a red, a green and a blue component – RGB values

Fig. 12.3 | Color constants and their RGB values.

Fig. 12.4 | Color methods and color-related Graphics methods.

Method paintComponent paints JPanel Set current drawing color with method setColor Draw filled rectangle using current color Draw text value of current color Set current drawing color, specify float arguments to Color constructor Set current drawing color using Color constant

Retrieving RGB values using methods getRed, getGreen and getBlue

Look-and-Feel Observation 12.1 Everyone perceives colors differently. Choose your colors carefully to ensure that your application is readable. Try to avoid using many different colors in close proximity.

Software Engineering Observation 12.1 To change the color, you must create a new Color object (or use one of the predeclared Color constants). Like String objects, Color objects are immutable (not modifiable).

Font Control Class Font Constructor takes three arguments—the font name, font style and font size Font name – any font currently supported by the system on which the program is running Font style –Font.PLAIN, Font.ITALIC or Font.BOLD. Font styles can be used in combination Font sizes – measured in points. A point is 1/72 of an inch. Methods getName, getStyle and getSize retrieve information about Font object Graphics methods getFont and setFont retrieve and set the current font, respectively

Fig. 12.10 | Font-related methods and constants. (Part 1 of 2)

Fig. 12.10 | Font-related methods and constants. (Part 2 of 2)

Creating and setting Font objects Font name Font style Font size Creating and setting Font objects

Retrieve font name and size of Graphics object’s current Font Combining styles Retrieve font name and size of Graphics object’s current Font

Software Engineering Observation 12.2 To change the font, you must create a new Font object. Font objects are immutable—class Font has no set methods to change the characteristics of the current font.

Drawing Lines, Rectangles and Ovals Graphics methods for drawing lines, rectangles and ovals fillRoundRect and drawRoundRect – draw rectangles with rounded corners bounding rectangle—the area in which a rounded rectangle or oval will be drawn draw3DRect and fill3DRect – draw a 3D rectangle that is either raised or lowered drawOval and fillOval – draw ovals

Fig. 12. 17 | Graphics methods that draw lines, rectangles and ovals Fig. 12.17 | Graphics methods that draw lines, rectangles and ovals. (Part 1 of 2)

Fig. 12. 17 | Graphics methods that draw lines, rectangles and ovals Fig. 12.17 | Graphics methods that draw lines, rectangles and ovals. (Part 2 of 2)

Draw an empty rectangle Draw a straight line Draw an empty rectangle Draw a filled rectangle

Draw a filled rectangle with rounded corners Draw an empty rectangle with rounded corners Draw an empty rectangle that is raised Draw a filled rectangle that is lowered Draw an empty oval Draw a filled oval

fillRoundRect drawLine drawRoundRect drawRect drawOval fillRect fillOval draw3DRect fill3DRect

Fig. 12.20 | Arc width and arc height for rounded rectangles.

Fig. 12.21 | Oval bounded by a rectangle.

Drawing Arcs An arc is drawn as a portion of an oval Arcs sweep (i.e., move along a curve) from a starting angle by the number of degrees specified by their arc angle Counterclockwise sweep measured in positive degrees Clockwise sweep measured in negative degrees Graphics methods drawArc and fillArc are used to draw arcs

Fig. 12.22 | Positive and negative arc angles.

Fig. 12.23 | Graphics methods for drawing arcs.

x- and y-coordinates for upper left corner of bounding rectangle Width and height of bounding rectangle Starting angle Sweep angle Draw empty arcs

Negative values indicate arc should sweep clockwise Draw filled arcs

Drawing Polygons and Polylines Closed multisided shapes composed of straight line segments Graphics methods drawPolygon and fillPolygon to display polygons Polygons can be represented using class Polygon – class contains method addPoint to add points to a Polygon Polylines Sequences of connected points Graphics method drawPolyline to display polylines

Fig. 12. 26 | Graphics methods for polygons and class Polygon methods Fig. 12.26 | Graphics methods for polygons and class Polygon methods. (Part 1 of 2)

Fig. 12. 26 | Graphics methods for polygons and class Polygon methods Fig. 12.26 | Graphics methods for polygons and class Polygon methods. (Part 2 of 2)

Create Polygon object from sets of x- and y-coordinates Draw an empty Polygon Draw polyline from sets of x- and y-coordinates

Add coordinates to Polygon with method addPoint Draw polygon from sets of x- and y-coordinates, without creating Polygon object Add coordinates to Polygon with method addPoint

Result of line 28 Result of line 18 Result of line 37 Result of line 23

Common Programming Error 12.1 An ArrayIndexOutOfBoundsException is thrown if the number of points specified in the third argument to method drawPolygon or method fillPolygon is greater than the number of elements in the arrays of coordinates that specify the polygon to display.

Java 2D API Provides advanced two-dimensional graphics capabilities for detailed and complex graphical manipulations Features for processing line art, text and images Accomplished with Graphics2D class

Lines, Rectangles, Round Rectangles, Arcs and Ellipses Java 2D shapes specified with double-precision floating-point values – Line2D.Double, Rectangle2D.Double, RoundRectangle2D.Double, Arc2D.Double, Ellipse2D.Double Painting with Graphics2D object Method setPaint – sets color for Graphics2D object when shapes are drawn as Paint object Paint object can be a predeclared Color object, or an instance of GradientPaint, SystemColor or TexturePaint classes GradientPaint used for drawing with a gradient – gradients can be cyclic or acyclic TexturePaint used for painting by replicating a stored image

Lines, Rectangles, Round Rectangles, Arcs and Ellipses Graphics2D method fill used to draw a filled Shape object – an object that implements interface Shape Graphics2D method draw used to draw a Shape object Setting stroke of a line or border Graphics2D method setStroke – requires argument that implements interface Stroke BasicStroke class – can specify width of line, end caps, line joins Arc2D.Double constants Arc2D.PIE – arc should be closed by two lines—one from starting point to center, one from center to ending point Arc2D.CHORD – draws a line from the starting point to the ending point Arc2D.OPEN – arc should not be closed

Java 2D API shape classes Creating a Graphics2D reference

Set Graphics2D object to draw using a gradient from blue to yellow Draw ellipse filled using gradient Set width of border to 10 pixels Create image to be used for TexturePaint object

Create TexturePaint object from image Draw rounded rectangle, filled with repeating image Draw arc using white border, 6 pixels wide Draw solid green line Set stroke to use dashes Draw dashed yellow line

General Paths A general path is a shape constructed from straight lines and complex curves Class GeneralPath Method moveTo specifies the first point in a general path Method lineTo draws a line to the next point in the path Method closePath completes the general path Graphics2D method translate – used to move the drawing origin Graphics2D method rotate – used to rotate the next displayed shape

Create GeneralPath object Set starting point of GeneralPath object

Add lines of general path Draw line from last point to first point Rotate approximately 18 degrees Draw star at current angle around origin