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.

Slides:



Advertisements
Similar presentations
Copyright 2006 by Pearson Education 1 Building Java Programs Supplement 3G: Graphics.
Advertisements

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.
Laboratory Study II October, Java Programming Assignment  Write a program to calculate and output the distance traveled by a car on a tank of.
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?
PHY-102 SAPIntroductory GraphicsSlide 1 Introductory Graphics In this section we will learn how about how to draw graphics on the screen in Java:  Drawing.
LAB SESSION 7 Graphical user interface Applet fundamentals Methods in applets Execution of an applet Graphics class.
1 Drawing C Sc 335 Object-Oriented Programming and Design Rick Mercer.
Java Graphics Section 1 - Multi-File Graphics Programs Section 2 - The Coordinate System and Graphics Context g Section 3 - The Java Drawing and Painting.
Building Java Programs Supplement 3G Graphics Copyright (c) Pearson All rights reserved.
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.
1 Chapter 15 l Basic Figures l Colors l Fonts and Other Text Details Graphics Objects.
©2004 Brooks/Cole Applets Graphics & GUIs. Figures ©2004 Brooks/Cole CS 119: Intro to JavaFall 2005 Graphical Programs Most applications these days are.
©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.
Copyright 2006 by Pearson Education 1 Building Java Programs Supplement 3G: Graphics.
Slides prepared by Rose Williams, Binghamton University Chapter 19 Swing II.
1 Applets Chapter 1 To understand:  why applets are used to extend the capabilities of Web pages  how an applet is executed and know about the restrictions.
©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.
Slides prepared by Rose Williams, Binghamton University ICS201 Lecture 16 : Swing VI Graphics King Fahd University of Petroleum & Minerals College of Computer.
Chapter 5 Graphics. Topics Applets Classes used for graphics –Graphics –Point –Dimension –Color.
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.
Graphics. Graphics Features in Java Topics to be covered Topics to be covered Graphics Basics Graphics Basics Coordinate System Coordinate System 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.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Java Applets What is an Applet? How do you create.
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.
DHTML: Structured Graphics ActiveX Control
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.
Java Software Solutions Lewis and Loftus Chapter 7 1 Copyright 1997 by John Lewis and William Loftus. All rights reserved. Graphics -- Introduction The.
Lecture 15: Intro to Graphics Yoni Fridman 7/25/01 7/25/01.
Chapter 15Java: an Introduction to Computer Science & Programming - Walter Savitch 1 Chapter 15 l Basic Figures l Colors l Fonts and Other Text Details.
Graphics & Java 2D Drawing Two Dimensional Shapes Controlling Fonts Controlling Colors.
Applets Applet is java program that can be embedded into HTML pages. Java applets runs on the java enabled web browsers such as mozilla and internet explorer.
Introduction to Java Simple Graphics. Objects and Methods Recall that a method is an action which can be performed by an object. –The action takes place.
Chapter 2: Color and Applets Coming up: Introduction to Graphics.
Graphics & Applets CSC 1051 – Data Structures and Algorithms I
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Introduction to Android (Part.
Tkinter Canvas.
1 Building Java Programs Supplement 3G: Graphics These lecture notes are copyright (C) Marty Stepp and Stuart Reges, They may not be rehosted, sold,
(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.
Creating Graphics in Java CSE301 University of Sunderland Harry R Erwin, PhD.
CSC 1051 – Data Structures and Algorithms I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website:
Graphics and Java2D Chapter Java Coordinate System Origin is in _____________ corner –Behind title bar of window X values increase to the ________.
CSI 3125, Preliminaries, page 1 AWT. CSI 3125, Preliminaries, page 2 AWT Java AWT (Abstract Windowing Toolkit) is an API to develop GUI or window-based.
1 Introduction to Graphics b The last one or two sections of each chapter of the textbook focus on graphical issues b Most computer programs have graphical.
Introduction to Graphics. Graphical objects To draw pictures, we will use three classes of objects: –DrawingPanel : A window on the screen. –Graphics.
Paint Tutorial Created February 2006 Start Paint: Start>Programs>Accessories>Paint.
CSC 1051 – Data Structures and Algorithms I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website:
1 Drawing C Sc 335 Object-Oriented Programming and Design Rick Mercer.
Please open JCreator and follow these steps: 1)Configure  Options 2)JDK Tools 3)Choose Run Applet from drop-down 4)Click Default, then Edit 5)Click the.
6.1 Coordinates The screen of a computer is a grid of little squares called pixels. The color of each pixel can be set individually, and drawing on the.
CPCS 391 Computer Graphics Lab One. Computer Graphics Using Java What is Computer Graphics: Computer graphics are graphics created using computers and,
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.
Intro to Graphics from Chapter 2 of Java Software Solutions
12 Graphics and Java 2D™.
Graphics Chapter 6 Copyright © 2000 W. W. Norton & Company.
CSC 1051 – Data Structures and Algorithms I
Basic Graphics Chapter 5 3/19/15 Thursday Section Only
JAVA 2 Design and programming of GUI
4.14 GUI and Graphics Case Study: Creating Simple Drawings (Cont.)
Graphics -- Introduction
Presentation transcript:

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 windowing toolkit) package zThis lesson focuses on: ythe coordinate system for Java graphics ythe use of color ydrawing shapes such as lines, ovals, rectangles, etc. ythe use of fonts ybasic animation techniques

2 The Graphics Class  An object of the Graphics class represents a particular drawing surface zIt defines a graphics context in which drawn shapes will be rendered  The Graphics class contains methods for drawing various shapes and controlling visual aspects like font and color  An applet has a graphics context, which is automatically passed to the paint method when it is called

3 The Coordinate System zA simple two-dimensional coordinate system exists for each graphics context (or drawing surface) zEach point on the coordinate system represents a single pixel zThe top left corner of the area is coordinate zA drawing surface has a particular width and height zAnything drawn outside of that area will not be visible  See Coordinates.java show Coordinates.javashow

4 The Coordinate System x y Y X

5 Color  The Color class is used to define and manage the color in which shapes are drawn zColors are defined by their RGB value, which defines the relative contribution of the primary colors red, green, and blue zEach drawing surface has a foreground color and a background color  The setColor method of the Graphics class defines the foreground color, and the setBackground method of the component (the applet) sets the background color

6 Color  The Color class contains several predefined colors, defined as public, static constants  See Nature.java show it Nature.javashow it  Many other colors can be defined using the constructor of the Color class zOver 16 million colors can be defined, but humans cannot distinguish between many similar colors zFurthermore, the hardware of most systems has limitations to the color options available

7 XOR Mode zDrawing in normal mode causes shapes of the same color to blend together zDrawing in XOR mode causes the overlapping portions of the shapes to be rendered in a contrasting color zThis effect can be used to "erase" a shape by redrawing it in the same color in the same spot while in XOR mode  See XOR_Demo.java show itDemo.javashow it

8 Drawing Shapes  The Graphics class contains methods for drawing several specific shapes: lines, ovals, rectangles, arcs, polygons, and polylines zMost shapes can be drawn filled or unfilled  A line, drawn with the drawLine method, is always one pixel wide and cannot be filled

9 Ovals zAn oval is defined by its bounding rectangle: zThe methods that draw an oval take four parameters, all integers: drawOval (x, y, width, height) fillOval (x, y, width, height) width height

10 Ovals zThe first two parameters are the coordinate of the top-left corner of the bounding rectangle zThe third and fourth parameters specify the width and height of the bounding rectangle  The drawOval method draws an unfilled oval and the fillOval method draws a filled (opaque) oval  See Ovals.java and Rotating_Disk.java Ovals.java Rotating_Disk.java show it show itshow it

11 Rectangles zRectangles can be drawn yfilled or unfilled ywith squared or rounded corners ywith a slight three-dimensional effect or not zThe primary parameters for all rectangle drawing methods define the upper left corner of the rectangle and its width and height zThe shape of the rounded corner of a rounded rectangle are defined by an arc width and height

12 Rectangles zA three dimensional rectangle is shown using a small highlight on two sides of the rectangle zThe highlight appears on the bottom and right or the top and left as specified by a boolean parameter to the 3D drawing methods  See Rectangles.java, show it Rounded_Rectangles.java, show it and Three_D_Rectangles.java show it Rectangles.javashow it Rounded_Rectangles.javashow it Three_D_Rectangles.javashow it

13 Arcs zAn arc is defined as a segment of an oval zThe first four parameters to the arc drawing methods define the bounding rectangle of the oval (top left corner, width, and height) zThe other two parameters define the start angle and the arc angle zThe start angle indicates where the arc begins and the arc angle determines how far the arc sweeps across its defining oval  See Arc.java show it Arc.javashow it

14 Arcs zThe start angle can be specified using both positive and negative values:

15 Arcs zAn arc angle can also be positive or negative zA positive arc angle sweeps counterclockwise, and a negative arc angle sweeps clockwise zTherefore, the same arc can be specified using four different combinations of start and arc angles zArcs can also be filled or unfilled  See Arcs.java show it Arcs.javashow it

16 Polygons zA polygon is a multisided figure defined by a series of ordered points zLine segments connecting the points form the polygon  The points are defined by corresponding arrays of x and y coordinate values, and can already be incorporated into an object of the Polygon class zPolygons are closed, forming a line segment from the last point back to the first  See Polygons.java show it Polygons.javashow it

17 Polylines zA polyline is similar to a polygon except that it is not closed zThat is, there is no line segment from the last point back to the first unless explicitly specified zThey are convenient for specifying certain kinds of complex shapes zPolylines cannot be filled  See Polylines.java show Polylines.javashow

18 Fonts zA font defines the look of each character when it is printed or drawn  The Font class provides methods for specifying fonts in a Java program zEach computer system supports a specific set of fonts  See Font_Lister.java Font_Lister.java  The setFont method defines the current font for a program

19 Fonts  A font is defined using the Font class constructor and a combination of: yfont name yfont style: plain, bold, italic, or bold+italic yfont size, in points  Constants are defined in the Font class to specify the font style  See Entropy.java Entropy.java

20 Animations zSimple animations can be accomplished by drawing a shape, then erasing it, then drawing it again in a slightly altered position zErasing can be accomplished through careful use of XOR mode zTiming must be controlled so that the animation does not move too fast  See Bouncing_Ball.java show it Bouncing_Ball.javashow it