Computer Science 330. Graphics Programming in C#

Size: px
Start display at page:

Download "Computer Science 330. Graphics Programming in C#"

Transcription

1 Computer Science 330 Graphics Programming in C#

2 The Graphics class and the OnPaint() method The Color and Font classes The Brush and Pen classes Drawing lines, rectangles and ovals Drawing arcs, polygons, and polylines Displaying images

3 The System.Drawing Namespace System.Drawing Font FontFamily Graphics Icon Pen Region SolidBrush TextureBrush Image Brush Color Point Rectangle Size HatchBrush LinearGradientBrush PathGradientBrush SolidBrush TextureBrush key class structure

4 The Graphics Class Graphics class represents: An "abstract" drawing surface (similar to file system) A set of "tools" you'll use to paint on the drawing surface Two ways to get a Graphics object Use the Graphics property passed to OnPaint() Use the CreateGraphics() method on any control Graphics g = mybutton.creategraphics()

5 The DrawString() Method Displays text in a particular Graphics context Several overloaded versions; version we used: DrawString( String text, // Text to display Font f, // Font used Brush b, // Color & texture Float x, y); // Upper-left corner Note that x,y is upper-left, rather than baseline Note that there is no default Font or Brush

6 The Coordinate System The default coordinate system Change default scaling Use Graphics PageUnit GraphicsUnit.Pixel (default) GraphicsUnit.Inch GraphicsUnit.Millimeter GraphicsUnit.Point (0, 0) +x +y (x, y) y-axis Use Graphics PageScale to scale output g.pagescale =.01f; // 1/100 of inch if PageUnit = Inch x- axis

7 The Color Struct I Represents ARGB colors Four 8-bit integers, packed into a 32-bit value A (alpha) represents transparency of color (255 opaque) RGB represent the individual red, green, blue values Create a custom color object using FromArgb() Color red = Color.FromArgb(255, 0, 0); Color blue = Color.FromArgb(128,0,255,0);

8 The Color Struct II Color objects are immutable Can't change them after creation (Makes the constructor kind of useless) Normally just use the 141 predefined colors 140 of these are the Unix X11 color names BackColor = Color.PapayaWhip; ForeColor = Color.AliceBlue; One non-x11 name : Transparent

9 Other Colors When painting custom controls, or painting on an existing component, you want your work to "blend in" Users have control over colors used in the standard interface (through the Display Properties dialog) You can use these through the SystemColors Color bg = SystemColors.Control; Color fg = SystemColors.ControlText;

10 The Font Class With DrawString() (), we passed the Font property Represents the current Font used by any Control You can create your own Fonts like this: Font fa = new Font("Times New Roman", 8); Font fb = new Font("Arial", 36, FontStyle.Bold); Font fc = new Font(fb, FontStyle.Bold FontStyle.Italic); Font fd = new Font("Arial", 1, GraphicsUnit.Inch); If a font name can't be found, the default font is used

11 The Brush Classes DrawString() uses a brush to do do the actual painting Brush is an abstract class, so you use a subclass The most common subclass is SolidBrush Brush sb = new SolidBrush(Color.red); The Brushes class also has 141 static solid brushes Brush sb2 = Brushes.AliceBlue;

12 The Pen Class A similar class (not used in DrawString() ()) is Pen Pens are used to draw solid lines There are two common constructors Pen p1 = new Pen(Color.Green); Pen p2 = new Pen(Color.blue, 10); There is also a Pens class that has 141 static pens Pen p3 = Pens.Indigo;

13 Lines, Rectangle & Ovals Overloaded Graphics methods for lines and shapes DrawXXX() methods take a Pen as first argument FillXXX() methods take a Brush as first argument DrawLine() takes x1, y1, x2, y2 as other arguments The other drawing methods take x, y, width, height (x, y) height width

14 Drawing Arcs Three methods: DrawArc, DrawPie, FillPie 0 is at 3:00 o'clock, arc sweeps clockwise (positive) Specify a starting position and ending position Positive Arc Negative Arc

15 Drawing Polygons and Polylines Three methods for drawing collections of lines DrawLines : series of connected lines DrawPolygon : same as DrawLines, but figure is closed FillPolygon : draws a solid polygon Each method takes an array of points First two take a pen, last a brush

16 Graphics Drawing Methods Graphics Drawing Methods and Descriptions. Note: Many of these methods are overloaded consult the documentation for a full listing. DrawLine( Pen p, int x1, int y1, int x2, int y2 ) Draws a line from (x1, y1) to (x2, y2). The Pen determines the color, style and width of the line. DrawRectangle( Pen p, int x, int y, int width, int height ) Draws a rectangle of the specified width and height. The top-left corner of the rectangle is at point (x, y). The Pen determines the color, style, and border width of the rectangle. FillRectangle( Brush b, int x, int y, int width, int height ) Draws a solid rectangle of the specified width and height. The top-left corner of the rectangle is at point (x, y). The Brush determines the fill pattern inside the rectangle. DrawEllipse( Pen p, int x, int y, int width, int height ) Draws an ellipse inside a rectangle. The width and height of the rectangle are as specified, and its top-left corner is at point (x, y). The Pen determines the color, style and border width of the ellipse. FillEllipse( Brush b, int x, int y, int width, int height ) Draws a filled ellipse inside a rectangle. The width and height of the rectangle are as specified, and its top-left corner is at point (x, y). The Brush determines the pattern inside the ellipse. Graphics methods that draw lines, rectangles and ovals.

17 Advanced 2D Drawing Classes provide more control over lines and fills Texture and Gradient brushes Ability to use different pen styles Advanced 2D effects in System.Drawing.Drawing2D Transformations (rotations, shearing, etc) Complex drawings using GraphicsPath

18 Images The Image class represents bitmap and vector graphics Use static method to create an Image from a file Image img = Image.FromFile("cards.bmp"); "); Use one of the 50 or so DrawImage() methods g.drawimage(img,, 10, 10); // autoscale g.drawimage(img,, 10, 10, 100, 200);

19 Embedded Images Rather than using a file, you can embed your images Use Add Existing Item in Solution Explorer Find BMP, GIF, etc and add it to your project Change Build Property to Embedded Resource Use this constructor to create the Image object Image img = new Bitmap(GetType(), (), "cards.bmp"); This also works with PictureBox control

Drawing. Creating a Metafile or Bitmap. For this chapter you will need the following name spaces:

Drawing. Creating a Metafile or Bitmap. For this chapter you will need the following name spaces: For this chapter you will need the following name spaces: using System; using System.IO; using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging;

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [AICS6]: Adobe Illustrator CS6 Length Delivery Method : 2 Days : Instructor-led (Classroom) Course Outline Module 1: Looking at the Work Area Section 1: About Adobe Illustrator CS6 What is Adobe Illustrator

More information

HSA2 Graphics Console

HSA2 Graphics Console HSA2 Graphics Console Introduction You already know that the Console window can output text, laid out in rows and columns of characters (any letter, number, punctuation mark, space, etc. is a character).

More information

GIMP (GNU Image Manipulation Program) MANUAL

GIMP (GNU Image Manipulation Program) MANUAL Selection Tools Icon Tool Name Function Select Rectangle Select Ellipse Select Hand-drawn area (lasso tool) Select Contiguous Region (magic wand) Selects a rectangular area, drawn from upper left (or lower

More information

Introduction to Adobe Photoshop 5.0

Introduction to Adobe Photoshop 5.0 Introduction to Adobe Photoshop 5.0 Fall 2000 Prepared by Soumaia Ahmed Al Ayyat Adobe Photoshop is a powerful, professional image-processing tool. It processes a variety of image formats. The quality

More information

Welcome to Photoshop CS

Welcome to Photoshop CS Chapter 1 Welcome to Photoshop CS COPYRIGHTED MATERIAL Photoshop CS is the latest version of Photoshop, Adobe s powerful image-editing program. It s part of Adobe s Creative Suite, a package of design

More information

Picturing Programs Teachpack

Picturing Programs Teachpack Picturing Programs Teachpack Version 7.3.0.1 Stephen Bloch April 9, 2019 (require picturing-programs) package: picturing-programs 1 1 About This Teachpack Provides a variety of functions for combining

More information

Create A Briefcase Icon

Create A Briefcase Icon Create A Briefcase Icon In this tutorial, I will show you how to create a briefcase icon with rectangles, ellipses, and gradients. This briefcase icon is great for web designs and user interfaces. Moreover,

More information

Adobe Fireworks CS4 Kalamazoo Valley Community College February 25, 2010

Adobe Fireworks CS4 Kalamazoo Valley Community College February 25, 2010 Adobe Fireworks CS4 Kalamazoo Valley Community College February 25, 2010 Introduction to Fireworks CS4 Fireworks CS4 is an image editing program that can handle both vector (line art/logos) and raster

More information

Today s lecture is about alpha compositing the process of using the transparency value, alpha, to combine two images together.

Today s lecture is about alpha compositing the process of using the transparency value, alpha, to combine two images together. Lecture 20: Alpha Compositing Spring 2008 6.831 User Interface Design and Implementation 1 UI Hall of Fame or Shame? Once upon a time, this bizarre help message was popped up by a website (Midwest Microwave)

More information

Hello, and welcome to this presentation of the STM32 Chrom-ART Accelerator. It covers the features of this of this adaptive real-time accelerator

Hello, and welcome to this presentation of the STM32 Chrom-ART Accelerator. It covers the features of this of this adaptive real-time accelerator Hello, and welcome to this presentation of the STM32 Chrom-ART Accelerator. It covers the features of this of this adaptive real-time accelerator block, which is widely used for graphic computing in the

More information

Mr. Giansante. Visual Basic. PictureBox Control & Graphics

Mr. Giansante. Visual Basic. PictureBox Control & Graphics Visual Basic PictureBox Control & Graphics August 2016 PictureBox Control To load an existing image into a PictureBox (named PictureBox1) at design time, select the Image property of the PictureBox. You

More information

COURSE: INTRODUCTION TO CAD GRADES: UNIT: Measurement

COURSE: INTRODUCTION TO CAD GRADES: UNIT: Measurement UNIT: Measurement - Students will demonstrate correctness in measuring using various scales and instruments. Demonstrate the various marks that make up a ruler including 1/16, 1/8, ¼ and ½. Assessment

More information

By Washan Najat Nawi

By Washan Najat Nawi By Washan Najat Nawi how to get started how to use the interface how to modify images with basic editing skills Adobe Photoshop: is a popular image-editing software. Two general usage of Photoshop Creating

More information

Welcome to Corel DESIGNER, a comprehensive vector-based package for technical graphic users and technical illustrators.

Welcome to Corel DESIGNER, a comprehensive vector-based package for technical graphic users and technical illustrators. Workspace tour Welcome to Corel DESIGNER, a comprehensive vector-based package for technical graphic users and technical illustrators. This tutorial will help you become familiar with the terminology and

More information

Adobe Photoshop CS5 Tutorial

Adobe Photoshop CS5 Tutorial Adobe Photoshop CS5 Tutorial GETTING STARTED Adobe Photoshop CS5 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop

More information

4 Use of Multimedia. 4.1 Digital Graphics

4 Use of Multimedia. 4.1 Digital Graphics 4 Use of Multimedia The chapter concerns the following; ² The basics of digital graphics ² Graphic size and compression ² Graphic types ² Basics related to graphic design ² Fundamentals of animation ²

More information

Adding Objects Creating Shapes Adding. Getting Started Creating a Workspace Pages, Masters and Guides Adding Objects Creating Shapes Adding

Adding Objects Creating Shapes Adding. Getting Started Creating a Workspace Pages, Masters and Guides Adding Objects Creating Shapes Adding and Guides ILLUSTRATOR Adding Objects Creating Shapes Adding Getting Started WORKSHOP: Creating a Workspace Pages, Masters Workspace Pages, ADVANCED Masters and Guides Adding Objects WORKSHOP OBJECTIVES

More information

Creating Flowers using Illustrator CS3 - CS5

Creating Flowers using Illustrator CS3 - CS5 Creating Flowers using Illustrator CS3 - CS5 In this lesson you'll learn how to use the scale and copy to create flower shapes. Creating Gradients for fill color and use the Roughen filter, Twist, Zig

More information

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University Images and Graphics Images and Graphics Graphics and images are non-textual information that can be displayed and printed. Graphics (vector graphics) are an assemblage of lines, curves or circles with

More information

A quick note: We hope that you will find something from the Tips and Tricks that will add a little pizazz to your yearbook pages!

A quick note: We hope that you will find something from the Tips and Tricks that will add a little pizazz to your yearbook pages! A quick note: The following pages are tips and tricks for Basic Photoshop users. You may notice that some instructions indicate that non-awpc fonts were used, and that some colors were created using the

More information

CATEGORY SKILL SET REF. TASK ITEM

CATEGORY SKILL SET REF. TASK ITEM ECDL / ICDL Image Editing This module sets out essential concepts and skills relating to the ability to understand the main concepts underlying digital images and to use an image editing application to

More information

IT154 Midterm Study Guide

IT154 Midterm Study Guide IT154 Midterm Study Guide These are facts about the Adobe Photoshop CS4 application. If you know these facts, you should be able to do well on your midterm. Photoshop CS4 is part of the Adobe Creative

More information

Create a Stylized GPS Icon

Create a Stylized GPS Icon Home About Resources Contact Shop Tutorials Tips and Tricks Interviews Inspiration Create a Stylized GPS Icon Tutorials July 9th, 2009 Location based software and peripherals are very popular these days.

More information

Adobe Photoshop CC 2018 Tutorial

Adobe Photoshop CC 2018 Tutorial Adobe Photoshop CC 2018 Tutorial GETTING STARTED Adobe Photoshop CC 2018 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop,

More information

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop How to Create Animated Vector Icons in Adobe Illustrator and Photoshop by Mary Winkler (Illustrator CC) What You'll Be Creating Animating vector icons and designs is made easy with Adobe Illustrator and

More information

ITP 140 Mobile App Technologies. Images

ITP 140 Mobile App Technologies. Images ITP 140 Mobile App Technologies Images Images All digital images are rectangles! Each image has a width and height 2 Terms Pixel A picture element Screen size In inches Resolution A width and height DPI

More information

AutoCAD Line Types If AutoCAD linetypes are disabled during configuration, Slick! will only plot/print straight lines!

AutoCAD Line Types If AutoCAD linetypes are disabled during configuration, Slick! will only plot/print straight lines! Print / Plot To print the contents of the graphics window, select File? Print/Plot from the menu bar. Slick! can print or plot directly to the Windows printer or plotter. In this discussion, the term printing

More information

ANDROID APPS DEVELOPMENT FOR MOBILE GAME

ANDROID APPS DEVELOPMENT FOR MOBILE GAME ANDROID APPS DEVELOPMENT FOR MOBILE GAME Graphics There are two general ways that app developers can draw things to the screen: Canvas or OpenGL. Lecture 4: Canvas and Animation Peter Lo 2 2D Drawing in

More information

Digital Photography 1

Digital Photography 1 Digital Photography 1 Photoshop Lesson 3 Resizing and transforming images Name Date Create a new image 1. Choose File > New. 2. In the New dialog box, type a name for the image. 3. Choose document size

More information

PAINT Pa and DRAW Dr aw

PAINT Pa and DRAW Dr aw PAINT Pa and DRAW Dr aw PAINT(BITMAP) e.g. Microsoft PAINT in Windows DRAW (VECTOR) e.g. in MS Office (Word and PowerPoint) 1 Bulb 1 Piece of Wire 1 Battery To open (with Windows open): Start Click on

More information

06/17/02 Page 1 of 12

06/17/02 Page 1 of 12 Understanding the Graphical User Interface When you start AutoCAD, the AutoCAD window opens. The window is your design work space. It contains elements that you use to create your designs and to receive

More information

Key Terms. Where is it Located Start > All Programs > Adobe Design Premium CS5> Adobe Photoshop CS5. Description

Key Terms. Where is it Located Start > All Programs > Adobe Design Premium CS5> Adobe Photoshop CS5. Description Adobe Adobe Creative Suite (CS) is collection of video editing, graphic design, and web developing applications made by Adobe Systems. It includes Photoshop, InDesign, and Acrobat among other programs.

More information

Digital Imaging - Photoshop

Digital Imaging - Photoshop Digital Imaging - Photoshop A digital image is a computer representation of a photograph. It is composed of a grid of tiny squares called pixels (picture elements). Each pixel has a position on the grid

More information

How to use filters Adobe Systems Incorporated How to use filters 1

How to use filters Adobe Systems Incorporated How to use filters 1 How to use filters Adobe Photoshop CS4 filters provide a range of options for changing your image s appearance. You can use filters to clean up or retouch your images, apply special art effects that give

More information

Part 1- Fundamental Functions

Part 1- Fundamental Functions Part 1- Fundamental Functions Note: Alt+Tab will allow you to move between programs in the docker. Shift+Tab removes right pallets Tab removes all pallets Ctrl+1= centers art board Ctrl + 0= fill window

More information

Ms. Cavo Graphic Art & Design Illustrator CS3 Notes

Ms. Cavo Graphic Art & Design Illustrator CS3 Notes Ms. Cavo Graphic Art & Design Illustrator CS3 Notes 1. Selection tool - Lets you select objects and groups by clicking or dragging over them. You can also select groups within groups and objects within

More information

ITNP80: Multimedia Adobe Photoshop Practical Weeks commencing 26 January and 2 February 2015.

ITNP80: Multimedia Adobe Photoshop Practical Weeks commencing 26 January and 2 February 2015. ITNP80: Multimedia Adobe Photoshop Practical Weeks commencing 26 January and 2 February 2015. The aims and objectives of this practical are four-fold: To give you some practical experience of some of the

More information

Raster (Bitmap) Graphic File Formats & Standards

Raster (Bitmap) Graphic File Formats & Standards Raster (Bitmap) Graphic File Formats & Standards Contents Raster (Bitmap) Images Digital Or Printed Images Resolution Colour Depth Alpha Channel Palettes Antialiasing Compression Colour Models RGB Colour

More information

Toon Boom Harmony V15.0

Toon Boom Harmony V15.0 Toon Boom Harmony V15.0 Paint Application Reference Book TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com Harmony

More information

Toon Boom Harmony V15.0

Toon Boom Harmony V15.0 Toon Boom Harmony V15.0 Paint Application Reference Book TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com Harmony

More information

XXXX - MAKING A FLYER BOOKLET COVER 1 N/08/08

XXXX - MAKING A FLYER BOOKLET COVER 1 N/08/08 INTRODUCTION TO GRAPHICS Making a flyer booklet cover Information Sheet No. XXXX Create a new document with these settings. Note that you will be using 300 dpi because this will be made for print. Keepit

More information

Corel PHOTO-PAINT BERNINA Page 1 DL

Corel PHOTO-PAINT BERNINA Page 1 DL Corel PHOTO-PAINT 2018 BERNINA Page 1 Corel PHOTO-PAINT Corel PHOTO-PAINT is part of BERNINA Embroidery Software and gives users many tools for editing photos or bitmap artwork. Corel PHOTO- PAINT can

More information

GETTING STARTED. 0 P a g e B a s i c s o f A d o b e P h o t o s h o p A g a P r i v a t e I n s t i t u t e f o r c o m p u t e r s c i e n c e

GETTING STARTED. 0 P a g e B a s i c s o f A d o b e P h o t o s h o p A g a P r i v a t e I n s t i t u t e f o r c o m p u t e r s c i e n c e GETTING STARTED 0 P a g e B a s i c s o f A d o b e P h o t o s h o p Adobe Photoshop: is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign,

More information

Toon Boom Harmony V15.0

Toon Boom Harmony V15.0 Toon Boom Harmony V15.0 Paint Application Reference Book TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com Harmony

More information

1: INTRODUCTION TO AUTOCAD

1: INTRODUCTION TO AUTOCAD AutoCAD syllabus 1: INTRODUCTION TO AUTOCAD Starting AutoCAD AutoCAD Screen Components Drawing Area Command Window Navigation bar Status bar Invoking Commands in AutoCAD Keyboard Ribbon Application Menu

More information

Create a Simple Storefront Icon

Create a Simple Storefront Icon Create a Simple Storefront Icon In this tutorial I will show you how to create a simple storefront icon using some rectangles, Illustrator Effects, and gradients. This icon is great for use in e-commerce

More information

Lecture 30. Monday, March 28 CS 205 Programming for the Sciences - Lecture 30 1

Lecture 30. Monday, March 28 CS 205 Programming for the Sciences - Lecture 30 1 Lecture 30 Log into Windows/ACENET. Download and extract GraphFunctionV2.zip, a new version of the Graph Function project. Double-click into the project folders to the solution file. Doubleclick on the

More information

Main screen of ipocket Draw

Main screen of ipocket Draw Main screen of ipocket Draw The tools of "management" Informations on the drawing and the softaware Display/Hide and settings of the grid (with a 2x tap) Drawing tools and adjustment tools The tools with..

More information

Create a new image: 10 IN height and 16 IN width, 300 dpi.

Create a new image: 10 IN height and 16 IN width, 300 dpi. The images needed for this project are on my website. Create a new image: 10 IN height and 16 IN width, 300 dpi. Create a new layer and fill the layer with white.. Create a radial gradient by using following

More information

The Tools and How They Work

The Tools and How They Work Pixlr Editor Tools This chapter looks at the broad set of tools at your disposal in Pixlr Editor. Here s what you ll learn: The Tool s Purpose and Function: Each tool s purpose and how it functions is

More information

Photoshop CC 2018 Essential Skills

Photoshop CC 2018 Essential Skills Photoshop CC 2018 Essential Skills Adobe Photoshop Creative Cloud 2018 University Information Technology Services Learning Technology, Training, Audiovisual and Outreach Copyright 2018 KSU Division of

More information

Adobe Photoshop CS2 Workshop

Adobe Photoshop CS2 Workshop COMMUNITY TECHNICAL SUPPORT Adobe Photoshop CS2 Workshop Photoshop CS2 Help For more technical assistance, open Photoshop CS2 and press the F1 key, or go to Help > Photoshop Help. Selection Tools - The

More information

User s Manual ❿ Drawings-Detailing

User s Manual ❿ Drawings-Detailing User s Manual ❿ Drawings-Detailing 2 CONTENTS I. THE NEW UPGRADED INTERFACE of SCADA Pro 4 1. UNITS 5 1.1 Drawings-Detailing 5 I. Files 6 II. Drawing 25 III. Formworks 30 IV. Edit 45 V. View 58 VI. Layers

More information

Digital Arts I - Course Outline

Digital Arts I - Course Outline Points Course Possible Hours Course Overview 4 Lesson 1: Start the Course Identify computer requirements. Learn how to move through the course. Switch between windows. Lesson 2: Set Up Your Computer Find

More information

CSCI Lab 6. Part I: Simple Image Editing with Paint. Introduction to Personal Computing University of Georgia. Multimedia/Image Processing

CSCI Lab 6. Part I: Simple Image Editing with Paint. Introduction to Personal Computing University of Georgia. Multimedia/Image Processing CSCI-1100 Introduction to Personal Computing University of Georgia Lab 6 Multimedia/Image Processing Purpose: The purpose of this lab is for you to gain experience performing image processing using some

More information

Working with Live Paint

Working with Live Paint Adobe Illustrator Working with Live Paint In Illustrator CS2, Adobe introduced the Live Paint feature, which revolutionized how a designer artist could add color to a drawing. The Live Paint feature allows

More information

ADOBE ILLUSTRATOR / ADOBE PHOTOSHOP

ADOBE ILLUSTRATOR / ADOBE PHOTOSHOP INDEX > A-Z ADOBE ILLUSTRATOR / ADOBE PHOTOSHOP A C E Align Panel 8, 19, 131 Anchor Points 22 Add 22, 47 Average and Join 30 Delete 22 Convert 22, 48 Stray Anchor Points 30, 42 Anti-alias 175 Anti-alias

More information

11 Advanced Layer Techniques

11 Advanced Layer Techniques 11 Advanced Layer Techniques After you ve learned basic layer techniques, you can create more complex effects in your artwork using layer masks, path groups, filters, adjustment layers, and more style

More information

ADOBE PHOTOSHOP CS 3 QUICK REFERENCE

ADOBE PHOTOSHOP CS 3 QUICK REFERENCE ADOBE PHOTOSHOP CS 3 QUICK REFERENCE INTRODUCTION Adobe PhotoShop CS 3 is a powerful software environment for editing, manipulating and creating images and other graphics. This reference guide provides

More information

The basic plan for printing is simple. The following lucid explanation occurs in the online help in the overview of the PrintDocument class:

The basic plan for printing is simple. The following lucid explanation occurs in the online help in the overview of the PrintDocument class: Printing The basic plan for printing is simple. The following lucid explanation occurs in the online help in the overview of the PrintDocument class: Create an instance of the PrintDocument class. Set

More information

Create a Business Card for World Travel Agency

Create a Business Card for World Travel Agency Create a Business Card for World Travel Agency In this lesson, students will design and create a business card for their world travel agency, using AppleWorks drawing tools. They will include graphic images

More information

Adobe PhotoShop Elements

Adobe PhotoShop Elements Adobe PhotoShop Elements North Lake College DCCCD 2006 1 When you open Adobe PhotoShop Elements, you will see this welcome screen. You can open any of the specialized areas. We will talk about 4 of them:

More information

Toon Boom Harmony 16.0

Toon Boom Harmony 16.0 Toon Boom Harmony 16.0 Paint Application Reference Book TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com Harmony

More information

TOON BOOM HARMONY 14.0 PAINT MODULE. Reference Guide

TOON BOOM HARMONY 14.0 PAINT MODULE. Reference Guide TOON BOOM HARMONY 14.0 PAINT MODULE Reference Guide Legal Notices Toon Boom Animation Inc. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 Tel: +1 514 278 8666 Fax: +1 514 278 2666 toonboom.com

More information

Lesson 6 2D Sketch Panel Tools

Lesson 6 2D Sketch Panel Tools Lesson 6 2D Sketch Panel Tools Inventor s Sketch Tool Bar contains tools for creating the basic geometry to create features and parts. On the surface, the Geometry tools look fairly standard: line, circle,

More information

Mid_Term_Review_PhotoShop_Design Test B Name

Mid_Term_Review_PhotoShop_Design Test B Name Mid_Term_Review_PhotoShop_Design Test B Name Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Photoshop uses a mathematical process called when it changes

More information

Creating Nice 2D-Diagrams

Creating Nice 2D-Diagrams UseCase.0046 Creating Nice 2D-Diagrams Keywords: 2D view, z=f(x,y), axis, axes, bitmap, mesh, contour, plot, font size, color lookup table, presentation Description This use case demonstrates how to configure

More information

Photoshop (Image Processing)

Photoshop (Image Processing) Photoshop (Image Processing) Photoshop is a paint program developed by Adobe. It allows a user to operate on pixels on the screen. The basic concept of Photoshop (and any other paint program) is to simulate

More information

Adobe Photoshop CS5 ACE

Adobe Photoshop CS5 ACE Adobe Photoshop CS5 ACE Number: A9A0-150 Passing Score: 800 Time Limit: 120 min File Version: 1.0 Sections 1. Selection Tools Exam A QUESTION 1 John creates a circular selection with Elliptical Marquee

More information

ADOBE PHOTOSHOP CS TUTORIAL

ADOBE PHOTOSHOP CS TUTORIAL ADOBE PHOTOSHOP CS TUTORIAL A D O B E P H O T O S H O P C S Adobe Photoshop CS is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe

More information

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes.

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes. Chapter 940 Introduction This section describes the options that are available for the appearance of a scatter plot. A set of all these options can be stored as a template file which can be retrieved later.

More information

Cityographer Pro Quickstart. Quickstart by Michael Tassano and Joe Wetzel;

Cityographer Pro Quickstart. Quickstart by Michael Tassano and Joe Wetzel; Cityographer Pro Quickstart Quickstart by Michael Tassano and Joe Wetzel; Getting Started Go to http://www.cityographer.com/download to download the latest version of Cityographer. Installation instructions

More information

Basic 2D drawing skills in AutoCAD 2017

Basic 2D drawing skills in AutoCAD 2017 Basic 2D drawing skills in AutoCAD 2017 This Tutorial is going to teach you the basic functions of AutoCAD and make you more efficient with the program. Follow all the steps so you can learn all the skills.

More information

The toolbar in Pixlr Editor always appears on the left-hand side, although you can drag it anywhere you like.

The toolbar in Pixlr Editor always appears on the left-hand side, although you can drag it anywhere you like. The toolbar in Pixlr Editor always appears on the left-hand side, although you can drag it anywhere you like. Crop (Shortcut: C) Reframe your entire canvas to a desired size and remove everything else.

More information

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics Simple Graphics and Image Processing The Plan For Today Website Updates Intro to Python Quiz Corrections Missing Assignments Graphics and Images Simple Graphics Turtle Graphics Image Processing Assignment

More information

n 4ce Professional Module

n 4ce Professional Module n 4ce Fact Sheet n 4ce Professional Module For the discerning user with specialist needs, n 4ce Professional provides extra facilities in Design and 3D presentations. Using the same platform as Lite, extra

More information

Exploring Photoshop Tutorial

Exploring Photoshop Tutorial Exploring Photoshop Tutorial Objective: In this tutorial we will create a poster composed of three distinct elements: a Bokeh, an image and title text. The Bokeh is an effect which is sometimes seen in

More information

Drawing with precision

Drawing with precision Drawing with precision Welcome to Corel DESIGNER, a comprehensive vector-based drawing application for creating technical graphics. Precision is essential in creating technical graphics. This tutorial

More information

Explanation of buttons used for sketching in Unigraphics

Explanation of buttons used for sketching in Unigraphics Explanation of buttons used for sketching in Unigraphics Sketcher Tool Bar Finish Sketch is for exiting the Sketcher Task Environment. Sketch Name is the name of the current active sketch. You can also

More information

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication IMAGE SIZING AND RESOLUTION MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication Copyright 2013 MyGraphicsLab / Pearson Education OBJECTIVES This presentation covers

More information

Computer Graphics Fundamentals NOS237. Systems.

Computer Graphics Fundamentals NOS237. Systems. Computer Graphics Fundamentals NOS237 B asford Systems www.basford.com.au Basford Systems This documentation and accompanying files are copyrighted. Other than for the purposes of and subject to the conditions

More information

DRAWING IN VISUAL BASIC

DRAWING IN VISUAL BASIC 205 Introduction CHAPTER EIGHT DRAWING IN VISUAL BASIC Visual basic has an advanced methods for drawing shapes like rectangles, circles, squares, etc or drawing a points or functions like sine, cosine,

More information

Downloaded From : Working with Photoshop 7.0

Downloaded From :  Working with Photoshop 7.0 Adobe Photoshop 1. Introduction What is Adobe Photoshop? Adobe Photoshop is a web designing software used for giving effects and filters to an image to make it more appealing and attractive. Brought out

More information

1.6.7 Add Arc Length Dimension Modify Dimension Value Check the Sketch Curve Connectivity

1.6.7 Add Arc Length Dimension Modify Dimension Value Check the Sketch Curve Connectivity Contents 2D Sketch... 1 1.1 2D Sketch Introduction... 1 1.1.1 2D Sketch... 1 1.1.2 Basic Setting of 2D Sketch... 2 1.1.3 Exit 2D Sketch... 4 1.2 Draw Common Geometry... 5 2.2.1 Points... 5 2.2.2 Lines

More information

Adobe Photoshop CC Part 1: The Basics

Adobe Photoshop CC Part 1: The Basics CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Photoshop CC Part 1: The Basics Summer 2015, Version 1.0 Table of Contents Introduction...2 New Features of Photoshop CC...2

More information

Compositing. Compositing is the art of combining two or more distinct elements to create a sense of seamlessness or a feeling of belonging.

Compositing. Compositing is the art of combining two or more distinct elements to create a sense of seamlessness or a feeling of belonging. Compositing Compositing is the art of combining two or more distinct elements to create a sense of seamlessness or a feeling of belonging. Selection Tools In the simplest terms, selections help us to cut

More information

ITP 140 Mobile App Technologies. Colors Images Icons

ITP 140 Mobile App Technologies. Colors Images Icons ITP 140 Mobile App Technologies Colors Images Icons Establish a style Look and Feel Create or choose a color palette Pick colors that complement each other Pick colors that are representative of your app

More information

Chapter 32. Creating Linetypes and Hatch Patterns. Learning Objectives

Chapter 32. Creating Linetypes and Hatch Patterns. Learning Objectives Chapter 32 Creating Linetypes and Hatch Patterns Learning Objectives After completing this chapter, you will be able to: Create Linetypes: Write linetype definitions. Create different linetypes. Create

More information

Graphics Handling (GIMP)

Graphics Handling (GIMP) http://www.plk83.edu.hk/cy/gimp Contents 1. Introduction (Page 1) 2. Understanding the User Interface (Page 1) 3. Image Authoring (Page 2) 4. Photo Retouching (Page 6) Introduction GIMP is a free computer

More information

Chapter 14 Inserting Bitmapped Images

Chapter 14 Inserting Bitmapped Images Chapter 14 Inserting Bitmapped Images Introduction This chapter explains how to insert and size bitmapped images in R&R reports. This information is presented in the following sections: Importing an Image

More information

INTRODUCTION TO COMPUTER GRAPHICS

INTRODUCTION TO COMPUTER GRAPHICS INTRODUCTION TO COMPUTER GRAPHICS ITC 31012: GRAPHICAL DESIGN APPLICATIONS AJM HASMY hasmie@gmail.com WHAT CAN PS DO? - PHOTOSHOPPING CREATING IMAGE Custom icons, buttons, lines, balls or text art web

More information

ACA Photoshop CC Exam Prep Questions

ACA Photoshop CC Exam Prep Questions ACA Photoshop CC Exam Prep Questions 1. Which of the following would you do first in order to present initial ideas to a client for their approval and feedback? A. Show the client the final project B.

More information

Qt Essentials - Painting Module

Qt Essentials - Painting Module Qt Essentials - Painting Module Training Course Visit us at http://qt.digia.com Produced by Digia Plc. Material based on Qt 5.0, created on September 27, 2012 Digia Plc. Module: Painting on Widgets Color

More information

Drawing the Red Christmas Bell

Drawing the Red Christmas Bell Vector 3D Christmas Bells Thinking of drawing some Christmas bells for this Christmas? Read this illustrator tutorial to learn how to draw 5 different styles of vector Christmas bells using the 3D Revolve

More information

Creating Accurate Footprints in Eagle

Creating Accurate Footprints in Eagle Creating Accurate Footprints in Eagle Created by Kevin Townsend Last updated on 2018-08-22 03:31:52 PM UTC Guide Contents Guide Contents Overview What You'll Need Finding an Accurate Reference Creating

More information

Evaluation Chapter by CADArtifex

Evaluation Chapter by CADArtifex The premium provider of learning products and solutions www.cadartifex.com EVALUATION CHAPTER 2 Drawing Sketches with SOLIDWORKS In this chapter: Invoking the Part Modeling Environment Invoking the Sketching

More information

ArtRage*, part of Intel Education User Guide

ArtRage*, part of Intel Education User Guide ArtRage*, part of Intel Education User Guide Copyright 04 Intel Corporation. All rights reserved. Intel and the Intel logo are registered trademarks of Intel Corporation in the United States and Disclaimer

More information

Diploma in Photoshop

Diploma in Photoshop Diploma in Photoshop Tabbed Window Document Workspace Options Options Bar Main Interface Tool Palette Active Image Stage Layers Palette Menu Bar Palettes Useful Tip Choose between pre-set workspace arrangements

More information

LECTURE 02 IMAGE AND GRAPHICS

LECTURE 02 IMAGE AND GRAPHICS MULTIMEDIA TECHNOLOGIES LECTURE 02 IMAGE AND GRAPHICS IMRAN IHSAN ASSISTANT PROFESSOR THE NATURE OF DIGITAL IMAGES An image is a spatial representation of an object, a two dimensional or three-dimensional

More information