Applets and the Graphics class

Similar documents
Data Representation and Applets

Data Representation and Applets

Data Representation and Applets

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Data Representation and Applets

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 7, Name:

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 9, Name: KEY


CSC 1051 Algorithms and Data Structures I. Midterm Examination February 24, Name: KEY 1

Data Representation Classes, and the Java API

Learning objectives: Objects and Primitive Data. Introduction to Objects. A Predefined Object. The print versus the println Methods

Graphical User Interfaces

Graphical User Interfaces

Appendix F: Java Graphics

Graphical User Interfaces

Designing Classes Part 2

Appendix F: Java Graphics

Chapter 2 Exercise Solutions

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 26, Name: Key

CS1004: Intro to CS in Java, Spring 2005

Preparation: Get to know the Java coordinate system. 3. How is the background color of the window specified? Copy the exact code:

2: Basics of Java Programming

Objects and Primitive Data

CSCI 2010 Principles of Computer Science. Data and Expressions 08/09/2013 CSCI

Chapter. Let's explore some other fundamental programming concepts

Data and Expressions. Outline. Data and Expressions 12/18/2010. Let's explore some other fundamental programming concepts. Chapter 2 focuses on:

ECE 122 Engineering Problem Solving with Java

Basics of Java Programming variables, assignment, and input

Lecture 3: Variables and assignment

Graphics Applets. By Mr. Dave Clausen

AYBUKE BUYUKCAYLI KORAY OZUYAR MUSTAFA SOYLU. Week 21/02/ /02/2007 Lecture Notes: ASCII

@Override public void start(stage primarystage) throws Exception { Group root = new Group(); Scene scene = new Scene(root);

Graphics Applets. By Mr. Dave Clausen

CONTENTS: Compilation Data and Expressions COMP 202. More on Chapter 2

CSC System Development with Java Introduction to Java Applets Budditha Hettige

Introduction to Computer Science I

CSC 1051 Data Structures and Algorithms I

Using sticks to count was a great idea for its time. And using symbols instead of real sticks was much better.

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 25, Name: KEY A

Designing Classes. Where do objects come from? Where do objects come from? Example: Account datatype. Dr. Papalaskari 1

CSC 1051 Algorithms and Data Structures I. Midterm Examination March 2, Name:

[301] Bits and Memory. Tyler Caraza-Harter

CSC Algorithms and Data Structures I. Midterm Examination February 25, Name:

What did we talk about last time? Examples switch statements

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 6, Name:

12/22/11. } Rolling a Six-Sided Die. } Fig 6.7: Rolling a Six-Sided Die 6,000,000 Times

Command-Line Applications. GUI Libraries GUI-related classes are defined primarily in the java.awt and the javax.swing packages.

A variable is a name for a location in memory A variable must be declared

Chapter. We've been using predefined classes. Now we will learn to write our own classes to define objects

CMPT 125: Lecture 3 Data and Expressions

Lab 3: Work with data (IV)

CSC 1051 Data Structures and Algorithms I

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Introduction to Java Chapters 1 and 2 The Java Language Section 1.1 Data & Expressions Sections

An applet is a program written in the Java programming language that can be included in an HTML page, much in the same way an image is included in a

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Declaration and Memory

Intermediate Programming & Design (C++) Notation

The type of all data used in a C (or C++) program must be specified

Module 2 - Part 2 DATA TYPES AND EXPRESSIONS 1/15/19 CSE 1321 MODULE 2 1

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

public static void main(string[] args) { GTest mywindow = new GTest(); // Title This program creates the following window and makes it visible:

The type of all data used in a C++ program must be specified

CS 112 Introduction to Programming

Admin. CS 112 Introduction to Programming. Recap: Java Static Methods. Recap: Decomposition Example. Recap: Static Method Example

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

CSC 1051 Data Structures and Algorithms I

Java Applets. Last Time. Java Applets. Java Applets. First Java Applet. Java Applets. v We created our first Java application

Discussion. Why do we use Base 10?

CISC 1600 Lecture 3.1 Introduction to Processing

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

TWO-DIMENSIONAL FIGURES

Program Fundamentals

Java Foundations: Introduction to Program Design & Data Structures, 4e John Lewis, Peter DePasquale, Joseph Chase Test Bank: Chapter 2

Notes from April 3 Tuesday

Objectives. Connecting with Computer Science 2

Data Conversion & Scanner Class

REPRESENTING INFORMATION:

Module 1: Information Representation I -- Number Systems

Using Classes and Objects

Chapter 3 - Introduction to Java Applets

COMP 110 Introduction to Programming. What did we discuss?

Using Classes and Objects

CS-201 Introduction to Programming with Java

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science

Algorithms and Conditionals

Expressions and Casting

COMP-202 Unit 2: Java Basics. CONTENTS: Using Expressions and Variables Types Strings

Chapter 2 Elementary Programming

Data Representation. Types of data: Numbers Text Audio Images & Graphics Video

More Programming Constructs -- Introduction

Goals. Java - An Introduction. Java is Compiled and Interpreted. Architecture Neutral & Portable. Compiled Languages. Introduction to Java

Chapter. Focus of the Course. Object-Oriented Software Development. program design, implementation, and testing

CS313D: ADVANCED PROGRAMMING LANGUAGE

IT 1204 Section 2.0. Data Representation and Arithmetic. 2009, University of Colombo School of Computing 1

Chapter 3 Syntax, Errors, and Debugging. Fundamentals of Java

255, 255, 0 0, 255, 255 XHTML:

Building Java Programs

Transcription:

Applets and the Graphics class CSC 2014 Java Bootcamp Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Some slides in this presentation are adapted from the slides accompanying Java Software Solutions by Lewis & Loftus Java Bootcamp Dr. Papalaskari Villanova University

Data Representation Review Computers store all information digitally, using binary codes: numbers text images audio video program instructions 9278 9279 9280 9281 9282 9283 9284 9285 9286 01110100

A byte is a group of eight bits 01110100 a number? a letter? the red component of a pixel? a program instruction? Computing devices store & use binary codes to represent data of all kinds

Binary codes 1 bit 0 1 2 bits 00 01 10 11 Each additional bit doubles the number of possible codes 3 bits 000 001 010 011 100 101 110 111 4 bits 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111

Binary Codes How many codes? 1 bit? 2 bits? 3 bits? 4 bits? 5 bits? How many codes of N bits? How many bits are needed to represent 64 items? How many bits are needed to represent 80 items? How many bits are needed to represent each of the 50 states (so that each state corresponds to a unique code)?

Storage requirements examples If a code requires 5 bits, a document consisting of 4000 such codes will require a total of: 5 x 4000 = 20,000 bits how many bytes is that? If a code requires 8 bits (i.e., a byte), a document consisting of 2000 such codes will require 2000 bytes. how many bits is that? If a code requires 32 bits, a program that needs to store 2000 such codes will require bits or bytes.

Storage Capacity Every memory device has a storage capacity, indicating the number of bytes it can hold Unit Symbol Number of Bytes kilobyte KB 2 10 = 1024 megabyte MB 2 20 (over one million) gigabyte GB 2 30 (over one billion) terabyte TB 2 40 (over one trillion) petabyte PB 2 50 (a whole bunch)

Overview Binary representation Data types revisited Type conversions Image representation Java Applets

Review Variables A variable is a name for a location in memory A variable must be declared by specifying the variable's name and the type of information that it will hold data type variable name int sum; double milespergallon; String name, petname; "

Numeric Primitive Data The difference between the numeric primitive types is their size and the values they can store: Type Storage Min Value Max Value byte short int long 8 bits 16 bits 32 bits 64 bits -128-32,768-2,147,483,648 < -9 x 10 18 127 32,767 2,147,483,647 > 9 x 10 18 float double 32 bits 64 bits +/- 3.4 x 10 38 with 7 significant digits +/- 1.7 x 10 308 with 15 significant digits

Example: Representing Text Characters, including spaces, digits, and punctuation are represented by numeric codes H i, H e a t h e r. 72 105 44 32 72 101 97 116 104 101 114 46 The ASCII (American Standard Code for Information Interchange) character set uses eight bits per character, allowing for 256 unique characters 01110100 ASCII 00000000 01110100 UNICODE The Unicode character set extends ASCII to sixteen bits per character, allowing for 65,536 unique characters.

Characters in Java A char variable stores a single character Character literals are delimited by single quotes: 'a' 'X' '7' '$' ',' '\n char topgrade = 'A'; char terminator = ';', separator = ' '; char nexttotopgrade = (char)(topgrade + 1); Note the difference between a primitive character variable, which holds only one character, and a String object, which can hold multiple characters

Overview Binary representation Data types revisited Type conversions Image representation Java Applets

Automatic type conversion Values of different types can be combined in an assignment or an expression Example: int dollars = 5; double money = dollars + 2.50; System.out.println(dollars + " dollars"); These are all examples of widening conversions, i.e, smaller data type è larger data type

Converting from one type to another Widening conversions small data type è larger one eg: int è double 32 bits è 64 bits Narrowing conversions large data type è smaller one eg: double è int 64 bits è 32 bits narrowing conversions can lose information! narrowing conversions cannot happen automatically (for example, through assignment)

Casting Casting forces a change of type, even if information is lost Can be used for both widening and narrowing conversion To cast, put the type in parentheses in front of the value to be converted: int total = 5; double result = (double) total / 2; int answer = (int) result + 4; double angle = 0; // 0 radians int x = (int)(math.cos(angle) * 300); (cast has higher precedence than arithmetic operators)

Data Conversion Widening Conversions Narrowing Conversions

How to use cast? Forcing floating point division between int expressions int qp = 35; int credits = 10; double gpa = (double) qp / credits; int qp = 35; int credits = 10; gpa should be 3.5? double gpa = (double) (qp / credits);

How to use cast? Scaling a double and converting to int double gpa = 3.2; int gpapercent = (int) (gpa / 4) * 100; gpapercent should be 80? double gpa = 3.2; int gpapercent = (int) ((gpa / 4) * 100);

Overview Binary representation Data types revisited Type conversions Image representation Java Applets

What s a picture? programs represent pictures as grids of picture elements or pixels Stephanos with his eraser collection

Representing Images Bitmap 1 bit Grayscale 8 bits RGB Color 3 colors: red, green, blue 8 bits/color 24 bits

Example: Representing Pixels red=116 green=86 blue=142 y = 8 Color ( 01110100, 01010110, 10001110 ) x = 11 fff

Additive/Subtractive Color We choose 3 primary colors that can be combined to produce almost all visible colors Additive primaries - combining light Red Green Blue Subtractive primaries - combining ink, thus subtracting light Cyan Yellow Magenta

Bitmap image A 2000 by 1000 bitmap image contains Bitmap 1 bit/pixel pixels. Thus, we need bits to to represent this image, or bytes

Grayscale Image A 2000 by 1000 grayscale image contains Grayscale 8 bits/pixel pixels. Thus, we need bytes to represent this image, or bits

RGB Image A 2000 by 1000 RGB image contains pixels. RGB color 24 bits/pixel 3 bytes/pixel Thus, we need bytes to represent this image, or bits

Graphics and images in Java Images are represented as objects in Java. Color components and positions for pixels can be represented as integers (but also in other ways). Java libraries allow flexibility, providing many alternative ways of representing and processing images. We will be using the Graphics class of the awt package and Japplet from the swing

Overview Binary representation Data types revisited Type conversions Image representation Java Applets

Applets A Java applet is a program that is intended to be transported over the Web and executed using a web browser An applet doesn't have a main method The type of program we have seen so far is a Java application - a stand-alone program with a main method

Example: Einstein.java //******************************************************************** // Einstein.java Author: Lewis/Loftus // // Demonstrates a basic applet. //******************************************************************** import javax.swing.japplet; import java.awt.*; public class Einstein extends JApplet { //----------------------------------------------------------------- // Draws a quotation by Albert Einstein among some shapes. //----------------------------------------------------------------- public void paint (Graphics page) { page.drawrect (50, 50, 40, 40); // square page.drawrect (60, 80, 225, 30); // rectangle page.drawoval (75, 65, 20, 20); // circle page.drawline (35, 60, 100, 120); // line } } page.drawstring ("Out of clutter, find simplicity.", 110, 70); page.drawstring ("-- Albert Einstein", 130, 100);

//******************************************************************** // Einstein.java Author: Lewis/Loftus // // Demonstrates a basic applet. //******************************************************************** import javax.swing.japplet; import java.awt.*; public class Einstein extends JApplet { //----------------------------------------------------------------- // Draws a quotation by Albert Einstein among some shapes. //----------------------------------------------------------------- public void paint (Graphics page) { page.drawrect (50, 50, 40, 40); // square page.drawrect (60, 80, 225, 30); // rectangle page.drawoval (75, 65, 20, 20); // circle page.drawline (35, 60, 100, 120); // line } } page.drawstring ("Out of clutter, find simplicity.", 110, 70); page.drawstring ("-- Albert Einstein", 130, 100);

Drawing a Line 10 150 X 20 45 Y page.drawline (10, 20, 150, 45); or Start x y End x y page.drawline (150, 45, 10, 20);

Drawing a Rectangle 50 X 20 40 100 Y Start x y Width Height page.drawrect (50, 20, 100, 40);

Drawing an Oval 175 X 20 80 Y bounding rectangle 50 page.drawoval (175, 20, 50, 80);

Drawing an Arc An arc is defined by an oval, a start angle, and an arc angle:

Filled vs unfilled shapes Instead of using drawrect(), drawoval() etc, we can use fillrect(), filloval() etc We can set the color using setcolor() See Snowman.java See also Snowman applet on a webpage

//******************************************************************** // Snowman.java Author: Lewis/Loftus // // Demonstrates basic drawing methods and the use of color. //******************************************************************** import javax.swing.japplet; import java.awt.*; public class Snowman extends JApplet { //----------------------------------------------------------------- // Draws a snowman. //----------------------------------------------------------------- public void paint (Graphics page) { final int MID = 150; final int TOP = 50; continued setbackground (Color.cyan); page.setcolor (Color.blue); page.fillrect (0, 175, 300, 50); // ground page.setcolor (Color.yellow); page.filloval (-40, -40, 80, 80); // sun

continued page.setcolor (Color.white); page.filloval (MID-20, TOP, 40, 40); // head page.filloval (MID-35, TOP+35, 70, 50); // upper torso page.filloval (MID-50, TOP+80, 100, 60); // lower torso page.setcolor (Color.black); page.filloval (MID-10, TOP+10, 5, 5); page.filloval (MID+5, TOP+10, 5, 5); // left eye // right eye page.drawarc (MID-10, TOP+20, 20, 10, 190, 160); // smile } } page.drawline (MID-25, TOP+60, MID-50, TOP+40); // left arm page.drawline (MID+25, TOP+60, MID+55, TOP+60); // right arm page.drawline (MID-20, TOP+5, MID+20, TOP+5); // brim of hat page.fillrect (MID-15, TOP-20, 30, 25); // top of hat

Encoding RGB Each component color (red, green, and blue) is encoded as a single byte Colors go from (0,0,0) to (255,255,255) (0,0,0) = black (255,255,255) = white If all three components are the same, the color is in greyscale eg: (50,50,50)

The Java Color Class A color in a Java program is represented as an object created from the Color class The Color class also contains several predefined colors, eg: Object RGB Value Color.black Color.blue Color.cyan Color.orange Color.white Color.yellow 0, 0, 0 0, 0, 255 0, 255, 255 255, 200, 0 255, 255, 255 255, 255, 0 Using a color: Creating a new color: page.setcolor(color.blue); Color salmon = new Color(255, 140, 128); page.setcolor(salmon);

Translation of programs into machine code High-level language source code compiler 00101011 00000000 00010001 01010000 00101000 01001010 00000000 00010001 01010000 00101000 Machine code machine-dependent low-level language

Translation of programs into machine code - reality is usually a bit more complicated Image source: http://rtcmagazine.com/articles/view/103234#

Java Translation is different High-level language Java source code Java bytecode machine-independent intermediate language Java compiler Bytecode interpreter Bytecode compiler machine-dependent low-level language 00101011 00000000 Machine 00010001 01010000 code 00101000 01001010 00000000 00010001 01010000 00101000 CSC 1051 M.A. 01001010 Papalaskari, Villanova University

The HTML applet Tag An applet is embedded into an HTML file using a tag that references the bytecode file of the applet The bytecode version of the program is transported across the web and executed by a Java interpreter that is part of the browser. <html> <head> <title>the Einstein Applet</title> </head> <body> <applet code="einstein.class" width=350 height=175> </applet> </body> </html>