Lecture 2: An Introduction to Colour Models

Size: px
Start display at page:

Download "Lecture 2: An Introduction to Colour Models"

Transcription

1 Lecture 2: An Introduction to Colour Models An important issue in visual media, and multimedia, is colour. Just as there are a multitude of file formats for computer graphics, there are a range of Colour Models commonly used to describe colour both on the computer monitor and on the printed page. By understanding the different ways in which colour can be described or categorised, it is possible to standardise colour output and display in your printed and visual work. In order to categorize color in some way that provides consistent communication of that color, the idea of Colour Models came into being. Models of color are methods by which colors are grouped for specific purposes (Color for Websites, 2000). What are Colour Models? While far from the complete list, the major colour models used to describe colour within multimedia are: Bitmap, Grayscale, RGB, Hexadecimal, Web Safe, CMY/CMYK, Process and Spot/PMS. Because of the differences in the way colour is displayed in different media, a range of colour models are needed. This being said, many of the models are interrelated, so an understanding of the major types is essential to developing a true understanding of colour representation. There are two types of colour models, those that are subtractive and those that are additive. Additive colour models use light to display colour, while subtractive models use printing inks. Colours perceived in additive models are the result of transmitted light. Colours perceived in subtractive models are the result of reflected light. There are several established colour models used in computer graphics, but the two most common are the RGB model (Red-Green-Blue) for computer display and the CMYK model (Cyan-Magenta- Yellow-blacK) for printing. Additive colour model (RGB) For computer displays Uses light to display colour Colours result from transmitted light Red + Green + Blue = White Subtractive colour model (CMY) For printed material Uses ink to display colour Colours result from reflected light Cyan + Magenta + Yellow = Black ( HET730 Lecture 2 Swinburne University of Technology 2004 Page 1

2 Black, White and Shades of Gray Bitmap The simplest of all the colour models is bitmap (not to be confused with the file format of the same name or the subcategory of images also using that term!). Bitmap in terms of colour models refers to a model where there are only 2 possible values: black or white. The bitmap model is infrequently used (do to the lack of tonal transition) except for monotone images such as clipart. Grayscale The grayscale colour model (as the name implies) offers a tonal range of grays. An 8bit colour model, grayscale has a pure white, a pure black and 254 shades of gray in-between! The grayscale format is best for images such as black and white photographs or any other image where a range of tonal variation between pure black and white is required. An image with ONLY black and white pixels (and no shades or gray) is ideal for the bitmap colour model. Where an image has shades of gray, the grayscale model is a better choice While the bitmap model can be used for images with tonal colour, the result uses dithering or pattern techniques to simulate shading and generally does not work well Colour models for computer screens/televisions/projection systems RGB RGB (Red-Green-Blue) is the model that describes colours for computer screens, televisions and colour projection systems (like data projectors). It is an additive colour model (meaning that red, green and blue light is added together to form other colours. Each colour (red, green and blue) has a possible value of between 0 (no colour) and 255 (full colour) and are expressed in the following way: R G B The individual number allocated to each colour represents what intensity of each colour is being mixed into the final colour being produced. For example, the RGB value 0, 0, 0 means that no red, green or blue is being added. As such the result will be black (an absence of colour). A value of 255, 255, 255 means that red, green and blue are all being added at full strength. As such, this value is white (the colour which results when red, green and blue are added together equally at full strength in the additive model). By multiplying the number of potential combinations together (256 3 ) you can work out that there are a total of 16,777,216 separate colours in the RGB palette. Thinking back to last week s lecture when we talked about colour depth, from this you can ascertain that RGB is a 24bit colour model! HET730 Lecture 2 Swinburne University of Technology 2004 Page 2

3 Hexadecimal The Hexadecimal colour space (often called HEX for short) is based on the RGB colour model. While the actual colours in the Hexadecimal colour model are the same as in the RGB colour model, it is the way they are referred to or numbered which is different. In Hexadecimal, RGB values can be described using less numbers, and it is in this way which colour is most commonly referred to when using HTML. Most of the numbers we deal with are written in decimal form, which means that "0" is the lowest value in a given place while "9" is the highest. This means that the successor to the number nine, ten, must be written with a value in the next higher place, i.e. "10". Likewise, ninety-nine is written as "99" while one hundred is written as "100". Because decimal numbers have ten possible digits in a given place, they are referred to as base 10 numbers. Hexadecimal numbers, on the other hand, are numbers that are written in base 16. That is, there are sixteen possible digits in a given place, therefore, in hexadecimal notation ten is written as "A" while fifteen is written as "F" and sixteen is written as "10". In other words, values greater than nine and less than sixteen are expressed as letters with the highest value being "F". Now, the colours that are displayed on your monitor are a mixture of blue green and red. Each of these colours may be displayed with 256 degrees of intensity. Thus any gradation of a colour may be displayed with a hexadecimal value with two places as: = 256 Therefore the hexadecimal number "00" ("0" in decimal form) represents an absence of a colour, while "FF" ("255" in decimal form) represents its maximum intensity. The three values for the three colours are written as a single six character string to produce 16,777,216 possible colours (e.g. the full range of RGB colours). For instance, is black, FFFFFF is white, FF0000 is red, 00FF00 is green, and 0000FF is blue. ( Remember, because we start numbering at 0, and have 16 values, the Hexadecimal colour model can express every possible RGB colour combination within 6 digits (e.g. 153, 51, 204 becomes 9933CC). The advantage of using Hexadecimal as opposed to RGB is that you can store the same information in less space. In a Hexadecimal code with two digits you can express the numbers 0 through 255. In a decimal code with two digits you can count from 0 to 99. Another advantage is that Hexadecimal (base 16) converts easily to binary (base 2), which is used by computers. A two digit hexadecimal number can range from 0 to 255, which can be expressed in eight digits of binary code. There are many ways you can convert RGB colour values to Hexadecimal. The easiest two ways are to convert colours in Photoshop or to use a scientific calculator. In Photoshop you can simply sample the colour (or type in the values in the RGB section of the colour dialogue box) and the corresponding Hexadecimal colour will be displayed beneath. HET730 Lecture 2 Swinburne University of Technology 2004 Page 3

4 If you re using a scientific calculator, make sure the Dec option is enabled and enter the first value (in this case 153 for the red value). Then select the Hex option to convert the decimal value to a hexadecimal value. Repeat this for the remaining two values (blue and green) and then put the numbers together in red, green, blue order. HET730 Lecture 2 Swinburne University of Technology 2004 Page 4

5 Web Safe Colour Web safe colour is another colour model, which is related to both the RGB and Hexadecimal colour models. Essentially it is a cut-down version of the RGB palette with only 256 possible colours (of which, in practice, only 216 are used). Three or four years ago, most personal computers supported a colour depth of, at best, 8 bits. What does that mean? The digital display of colour tends to be divided into three root colours: red, green, and blue (i.e., RGB). The pixels in your screen then give different intensities to each of these root colours to produce all the other colours. The intensity for each root colour is broken into even units, not because it looks better but because computers like things that way. Currently, and for some time now, that scale has had 256 values. If you start at 0, your scale stops at 255. So, if we have 256 possible values for each of our root colours, that gives a total of 16,777,216 colours (256 * 256 * 256), a.k.a. "millions of colours," "True Colour," or "24-bit colour". Old personal computers didn't have a lot of video memory or very sophisticated video cards, so they could only support a total of 256 colours at a time (out of a possible 16,777,216). 256 colour support, or colour depth," is also known as 8-bit colour because it is 2 8 (2 being the basic unit that computers use to store information - a single bit). The questions then are which 256 colours did these old systems use, and why? As we said, computers like mathematical simplicity, so the palette has to have consistent spacing. We need to find the largest number that can be cubed (to accommodate the three root colours RGB) without its cubed value exceeding 256. That number is 6 (6 * 6 * 6 = 216). If you need six points on a scale, you need five spaces. Since we started our scale on 0, not 1, we can divide 255 by 5 and get the result of 51. Therefore, our values are 0, 51, 102, 153, 204, and 255. Any combination of these in the R, G, or B positions results in a valid colour for an 8-bit display. Note that colour values may also be given in hexadecimal form. For example, the decimal (RGB) value triad 51, 204, 102 would be 33CC66 in hex. In theory, an operating system can display any 256 colours, but your machine would take a real performance hit if it had to redraw its palette every time you toggled between applications. Instead, Web browsers convert all colours to static, generic palettes. This gives consistency, which improves performance. The 216 colours we found above are part of the generic palette for both Internet Explorer and Netscape Navigator. You may have noticed, though, that we have 40 colours unaccounted for. About 20 of those colours are fixed by the operating system itself. Windows and Macintosh, however, don't choose the same set of colours for their system palettes. In order to attain cross-operating system consistency, we eliminate both their system palettes from our design palette. Then there are a few stragglers, which are cut out for simplicity's sake. So, we're back to the evenly spaced 216 colours we got earlier. And that is the web safe - or rather, the cross-netscape Navigator-Internet Explorer-Windows- MacIntosh-8-bit palette As modern systems can display the full range of colours, the Web Safe palette has become less relevant to web design and on-screen display. However, the recent development of hand-held computing devices, picture and video mobile phones and personal organisers etc. (which often only support 8-bit colour) has again brought the Web Safe palette into consideration. Many experienced designers suggest that even if you don t use the Web Safe colour palette all the way throughout your designs, it s a good idea to choose a web safe colour for your text and background (dithered text is not a pretty sight!). Similarly many designers consider the web safe colour palette when designing logos that are intended for web display as it will ensure that even the most basic system can see the logo as it was intended. HET730 Lecture 2 Swinburne University of Technology 2004 Page 5

6 The 216 Netscape Navigator/Internet Explorer/Windows/Macintosh 8-bit palette web safe colour palette. HET730 Lecture 2 Swinburne University of Technology 2004 Page 6

7 Colour Models for printing CMY/CMYK Colour Model The CMYK (Cyan Magenta Yellow - black) model is based upon the combination of four inks commonly used to print images. Upon close inspection of a printed color image, one can see that what appears to be a solid color is actually composed of tiny dots of cyan, magenta, yellow, and black. When light shines on a printed image, part of the spectrum is absorbed by the inks while the rest is reflected off to create visible colors. Because this is a reflected rather than direct light source, printed CMYK colors cannot achieve the same level of brightness as RGB colors on a display monitor and thus appear darker and more saturated. A CMYK color is represented with a series of four percentages corresponding to the four inks; for example, a sky blue color would be: C=60% Y=40% M=0% K=0% With the CMYK colour model, it is possible to describe a total of colours (100,000,000). In practice, however, it is standard to round the percentages describing each of the inks to the nearest 5 or 0. For example, while it is possible to describe a CMYK colour as 61, 22, 78, 92 it would be much more common to represent this as 60, 20, 80, 90. Generally, individual percentiles are only used when an exact colour match is required. You will remember from earlier that as a subtractive colour model the combination of Cyan, Magenta and Yellow inks should be enough to produce black and in theory this is true. In practice, however, due to impurities in the printing inks, the combination of these colours results in a dark murky brown. To combat this, it is typical for printers to use a black ink to enable the printing of a pure black. Sometimes, however, printers will use just the CMY model (this is more common when printing a very pale full colour image without deep shades or black within the image). CMYK printing is also called full colour or process printing, which can be a bit confusing as in 1968 Pantone introduced the Four-Colour Process Guide to also describe CMYK (or process) colour. Pantone Four-Colour Process Guide The Pantone Four-Colour Process Guide relates to CMYK in that it is a sample of the possible number of colours. As we discussed earlier, it is possible to describe 100,000,000 different colours using the CMYK colour model. In practice, however, there is unlikely to be any visible difference between 100, 99, 100, 100 and 100, 100, 100, 100. The Pantone Four-Colour Process Guide is a printed booklet, which has around 3000 commonly, used CMYK colours (expressed in 10% increments). The books are designed to allow exact colour matching to take place between computer and press. Using the Pantone Four-Colour Process Guide, you can specify with extreme accuracy the output of your CMYK colours. One limitation of the CMYK model, is that it can not produce very pure bright colour CMYK colours are typically darker and less vibrant than RGB colours. This is particularly evident in bright reds, hot pinks and electric blues. To combat this, Pantone introduced another system Spot/Solid Colour. On an aside the Four-Colour Process Guide comes in three varieties: coated, uncoated and matte. This is because colours can look slightly different depending on what stock or paper type they are printed on. HET730 Lecture 2 Swinburne University of Technology 2004 Page 7

8 Spot/Solid Colour (also called the Pantone Matching System or PMS) Where process colour is made up of a combination of Cyan, Magenta, Yellow and Black, spot colour is a premixed ink. Because the colour is mixed before printing (very much like mixing paint!) it is possible to achieve a vibrancy of colour not possible when combining four inks on the actual page. There are a lot of reasons why spot colour might be used, but the major two are: To get a perfect match of colour (for a logo etc.) when process colour can not achieve this (the Kellogs cereal packets are a good example of this) When a print job is being printed in only one or two colours it is cheaper to mix the exact colour(s) required and run the paper through the printing press once or twice than have to run the paper through the press four times to achieve the same result in CMYK Like the Pantone Four-Colour Process Guide, PMS colours are presented in a booklet and come in coated, uncoated and matte versions. A total of 1,114 colours are represented in the standard guide, although recently Pantone has produced a range of other guides to assist in the specification of other non-standard inks such as: Tints (where a PMS colour is printed at a percentage of it s full value) Duotone (where two PMS colours are printed one of top of another at different percentages to enable a range of colours) Metallic inks Florescent inks Pearlescent inks The conversion from process to PMS is a tricky one, but to help with this Pantone have produced a guide to assist designers in choosing colours which can be represented by both colour models. In fact, there are now a range of books which list RGB/Web Safe/Process/PMS colour equivalents, so that a designer can ensure logos etc. can appear identical across a range of media. Further Reading Color for Websites Author: Holzaschlag, Molly E. Author: Pring, Roger Color graphics: the power of color in graphic design Author: Triedman, Karen Digital color and type Author: Carter, Rob HET730 Lecture 2 Swinburne University of Technology 2004 Page 8

COLOR AS A DESIGN ELEMENT

COLOR AS A DESIGN ELEMENT COLOR COLOR AS A DESIGN ELEMENT Color is one of the most important elements of design. It can evoke action and emotion. It can attract or detract attention. I. COLOR SETS COLOR HARMONY Color Harmony occurs

More information

Correction Techniques

Correction Techniques 10 Advanced Color Correction Techniques Learning Objectives After completing this chapter, you will be able to: Explain how a computer monitor displays color. Describe how color is created in the printing

More information

Chapter 4. Incorporating Color Techniques

Chapter 4. Incorporating Color Techniques Chapter 4 Incorporating Color Techniques Color Modes Photoshop displays and prints images using specific color modes A mode is the amount of color data that can be stored in a given file format 2 Color

More information

In order to manage and correct color photos, you need to understand a few

In order to manage and correct color photos, you need to understand a few In This Chapter 1 Understanding Color Getting the essentials of managing color Speaking the language of color Mixing three hues into millions of colors Choosing the right color mode for your image Switching

More information

Using Adobe Photoshop

Using Adobe Photoshop Using Adobe Photoshop 4 Colour is important in most art forms. For example, a painter needs to know how to select and mix colours to produce the right tones in a picture. A Photographer needs to understand

More information

Basics of Colors in Graphics Denbigh Starkey

Basics of Colors in Graphics Denbigh Starkey Basics of Colors in Graphics Denbigh Starkey 1. Visible Spectrum 2 2. Additive vs. subtractive color systems, RGB vs. CMY. 3 3. RGB and CMY Color Cubes 4 4. CMYK (Cyan-Magenta-Yellow-Black 6 5. Converting

More information

Color theory Quick guide for graphic artists

Color theory Quick guide for graphic artists Quick guide for graphic artists We can talk about color using two kinds of terminology: Color generation systems. Color harmony system. Graphic artists and photographers certainly have to understand color

More information

Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg

Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg Color evokes a mood; it creates contrast and enhances the beauty in an image. It can make a dull

More information

Color is the factory default setting. The printer driver is capable of overriding this setting. Adjust the color output on the printed page.

Color is the factory default setting. The printer driver is capable of overriding this setting. Adjust the color output on the printed page. Page 1 of 6 Color quality guide The Color quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Quality menu Use Print Mode Color

More information

Colors in Images & Video

Colors in Images & Video LECTURE 8 Colors in Images & Video CS 5513 Multimedia Systems Spring 2009 Imran Ihsan Principal Design Consultant OPUSVII www.opuseven.com Faculty of Engineering & Applied Sciences 1. Light and Spectra

More information

Additive Color Synthesis

Additive Color Synthesis Color Systems Defining Colors for Digital Image Processing Various models exist that attempt to describe color numerically. An ideal model should be able to record all theoretically visible colors in the

More information

Color. Chapter 6. (colour) Digital Multimedia, 2nd edition

Color. Chapter 6. (colour) Digital Multimedia, 2nd edition Color (colour) Chapter 6 Digital Multimedia, 2nd edition What is color? Color is how our eyes perceive different forms of energy. Energy moves in the form of waves. What is a wave? Think of a fat guy (Dr.

More information

Colour Theory Basics. Your guide to understanding colour in our industry

Colour Theory Basics. Your guide to understanding colour in our industry Colour heory Basics Your guide to understanding colour in our industry Colour heory F.indd 1 Contents Additive Colours... 2 Subtractive Colours... 3 RGB and CMYK... 4 10219 C 10297 C 10327C Pantone PMS

More information

color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals

color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals color basics theory & application Fall 2013 Ahmed Ansari Communication Design Fundamentals Presentation 7 Tom Fraser + Adam Banks Designer's Color Manual Johannes Itten The Art of Color Ellen Lupton &

More information

Chapter 11. Preparing a Document for Prepress and Printing Delmar, Cengage Learning

Chapter 11. Preparing a Document for Prepress and Printing Delmar, Cengage Learning Chapter 11 Preparing a Document for Prepress and Printing 2011 Delmar, Cengage Learning Objectives Explore color theory and resolution issues Work in CMYK mode Specify spot colors Create crop marks Create

More information

Color Management, Profiles, and Spot Colors. Not Everything There is to Know, but Enough to Get You Started

Color Management, Profiles, and Spot Colors. Not Everything There is to Know, but Enough to Get You Started Color Management, Profiles, and Spot Colors Not Everything There is to Know, but Enough to Get You Started John Hendron johnhendron.net April, 2005 Color, Photoshop, and the Mac, 2 Introduction Color on

More information

Image Processing for Mechatronics Engineering For senior undergraduate students Academic Year 2017/2018, Winter Semester

Image Processing for Mechatronics Engineering For senior undergraduate students Academic Year 2017/2018, Winter Semester Image Processing for Mechatronics Engineering For senior undergraduate students Academic Year 2017/2018, Winter Semester Lecture 8: Color Image Processing 04.11.2017 Dr. Mohammed Abdel-Megeed Salem Media

More information

A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels.

A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels. Graphics 1 Raster Vector A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels. Vector graphics use mathematical relationships

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

LECTURE 07 COLORS IN IMAGES & VIDEO

LECTURE 07 COLORS IN IMAGES & VIDEO MULTIMEDIA TECHNOLOGIES LECTURE 07 COLORS IN IMAGES & VIDEO IMRAN IHSAN ASSISTANT PROFESSOR LIGHT AND SPECTRA Visible light is an electromagnetic wave in the 400nm 700 nm range. The eye is basically similar

More information

CD: (compact disc) A 4 3/4" disc used to store audio or visual images in digital form. This format is usually associated with audio information.

CD: (compact disc) A 4 3/4 disc used to store audio or visual images in digital form. This format is usually associated with audio information. Computer Art Vocabulary Bitmap: An image made up of individual pixels or tiles Blur: Softening an image, making it appear out of focus Brightness: The overall tonal value, light, or darkness of an image.

More information

GUIDELINES & INFORMATION

GUIDELINES & INFORMATION GUIDELINES & INFORMATION This document will provide basic guidelines for the use of the World Animal Day logo and general knowledge about the various file formats provided. Adhering to these guidelines

More information

Color Models: RGB vs CMYK

Color Models: RGB vs CMYK Color Models: RGB vs CMYK RGB Color Model - Emitted Light 1. The RGB color space is used for screens and monitors Web, smart phone, tablets, video 2. RGB files have three color channels Red, Green, Blue

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

Color Theory: Defining Brown

Color Theory: Defining Brown Color Theory: Defining Brown Defining Colors Colors can be defined in many different ways. Computer users are often familiar with colors defined as percentages or amounts of red, green, and blue (RGB).

More information

Digital Images. Back to top-level. Digital Images. Back to top-level Representing Images. Dr. Hayden Kwok-Hay So ENGG st semester, 2010

Digital Images. Back to top-level. Digital Images. Back to top-level Representing Images. Dr. Hayden Kwok-Hay So ENGG st semester, 2010 0.9.4 Back to top-level High Level Digital Images ENGG05 st This week Semester, 00 Dr. Hayden Kwok-Hay So Department of Electrical and Electronic Engineering Low Level Applications Image & Video Processing

More information

Sistemas de Representação Digital em Design

Sistemas de Representação Digital em Design Sistemas de Representação Digital em Design FA.Ulisboa 2013/2014 2º semestre Licenciatura em Design Luís Mateus (lmmateus@fa.ulisboa.pt) Digital Image Processing Image coordinate frame (notice that first

More information

check it out online at

check it out online at check it out online at www.belyea.com/svc/all_about_color.pdf Who am I? I got the blues Experience and Emotions through color PASSION JOY Depression HARMONY CREATIVITY PEACE MOURNING It s a bird, it s

More information

Colours and Control for Designers. This article is supported by...

Colours and Control for Designers. This article is supported by... Wild Format Technology Guides Series 3 The Wild Format guides are intended to expand awareness and understanding of the craziness that can be created on wide format digital printing devices, from floors

More information

Color and Images. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 16

Color and Images. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 16 Color and Images Computer Science and Engineering College of Engineering The Ohio State University Lecture 16 Colors in CSS Use: fonts, borders, backgrounds Provides semantic signal: Green go, success,

More information

Terms. Color Hue. Spot color Flood Value Density RGB. Pantone Duotone Hexachrome CMYK Gamut. Toyo/Trumatch

Terms. Color Hue. Spot color Flood Value Density RGB. Pantone Duotone Hexachrome CMYK Gamut. Toyo/Trumatch COLOR! Management A system of: hardware, software & procedures that are calibrated to best insure color accuracy and repeatability throughout the production process Terms Sensation caused by light as it

More information

Many of the tools in Photoshop s graphic user interface are designed

Many of the tools in Photoshop s graphic user interface are designed 102640 ch03.1.qxp 3/2/07 3:47 PM Page 61 Understanding Color Modes Many of the tools in Photoshop s graphic user interface are designed to simulate real-life studio or darkroom techniques, and indeed,

More information

Thursday, May 19, 16. Color Theory

Thursday, May 19, 16. Color Theory Color Theory Which colours is white light made of? Did you know?! Your eyes have only 3 types of cells that can recognize millions of colours.! When you observe a colour, it is because different combinations

More information

Figure 1: Energy Distributions for light

Figure 1: Energy Distributions for light Lecture 4: Colour The physical description of colour Colour vision is a very complicated biological and psychological phenomenon. It can be described in many different ways, including by physics, by subjective

More information

This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output.

This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Page 1 of 7 Color quality guide This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Quality Menu Selections available

More information

THE 3 BIGGEST MISTAKES TO AVOID WHEN USING GRAPHIC IMAGES IN PRINT

THE 3 BIGGEST MISTAKES TO AVOID WHEN USING GRAPHIC IMAGES IN PRINT THE 3 BIGGEST MISTAKES TO AVOID WHEN USING GRAPHIC IMAGES IN PRINT Nothing beats great color and crisp images in a printed marketing piece. But if you ve ever had a print job rejected for poor image resolution,

More information

05 Color. Multimedia Systems. Color and Science

05 Color. Multimedia Systems. Color and Science Multimedia Systems 05 Color Color and Science Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com Lectures Adapted From: Digital Multimedia

More information

Photoshop 01. Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf

Photoshop 01. Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf Photoshop 01 Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf Topics Raster Graphics Document Setup Image Size & Resolution Tools Selecting and Transforming

More information

olors Ink: TransparenT Inks ith C Opaque Inks COlOr: spot COlOr 4-COlOr process orking W W

olors Ink: TransparenT Inks ith C Opaque Inks COlOr: spot COlOr 4-COlOr process orking W W Ink: The physical form of color; Ink is how color is applied to paper There are two different types of inks: Transparent Inks are commonly used in printing Opaque Inks are considered a specialty ink and

More information

LIGHTIG FOR INTERIORS

LIGHTIG FOR INTERIORS LIGHTIG FOR INTERIORS COLORS LIGHTING Interior Design Department Third grade/ Fall semester Siba nazem Kady COLORS THEORIES OF COLOR DESIGN Review The Hue REVIEW HUE,VALUE, AND SATURATION - Gradation of

More information

CHAPTER 3 I M A G E S

CHAPTER 3 I M A G E S CHAPTER 3 I M A G E S OBJECTIVES Discuss the various factors that apply to the use of images in multimedia. Describe the capabilities and limitations of bitmap images. Describe the capabilities and limitations

More information

Colour. Cunliffe & Elliott, Chapter 8 Chapman & Chapman, Digital Multimedia, Chapter 5. Autumn 2016 University of Stirling

Colour. Cunliffe & Elliott, Chapter 8 Chapman & Chapman, Digital Multimedia, Chapter 5. Autumn 2016 University of Stirling CSCU9N5: Multimedia and HCI 1 Colour What is colour? Human-centric view of colour Computer-centric view of colour Colour models Monitor production of colour Accurate colour reproduction Cunliffe & Elliott,

More information

printing A guide to newsprint printing

printing A guide to newsprint printing A guide to newsprint A guide to newsprint Introduction Our aim in producing this guide is to help you modify your files to meet our paper and requirements, so you can receive the best print result possible.

More information

Computers and Imaging

Computers and Imaging Computers and Imaging Telecommunications 1 P. Mathys Two Different Methods Vector or object-oriented graphics. Images are generated by mathematical descriptions of line (vector) segments. Bitmap or raster

More information

Colour. Why/How do we perceive colours? Electromagnetic Spectrum (1: visible is very small part 2: not all colours are present in the rainbow!

Colour. Why/How do we perceive colours? Electromagnetic Spectrum (1: visible is very small part 2: not all colours are present in the rainbow! Colour What is colour? Human-centric view of colour Computer-centric view of colour Colour models Monitor production of colour Accurate colour reproduction Colour Lecture (2 lectures)! Richardson, Chapter

More information

Lecture #2: Digital Images

Lecture #2: Digital Images Lecture #2: Digital Images CS106E Spring 2018, Young In this lecture we will see how computers display images. We ll find out how computers generate color and discover that color on computers works differently

More information

Title goes Shadows and here Highlights

Title goes Shadows and here Highlights Shadows Title goes and Highlights here The new Shadows and Highlights command in Photoshop CS (8) is a great new tool that will allow you to adjust the shadow areas of an image while leaving the highlights

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

printing An designer s guide to newsprint printing

printing An designer s guide to newsprint printing 7 Toptips printing An designer s guide to newsprint printing The Meeting Place of Intelligent Business Introduction Our aim in producing this guide is to help you modify your files to meet our paper and

More information

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors ITEC2110 FALL 2011 TEST 2 REVIEW Chapters 2-3: Images I. Concepts Graphics A. Bitmaps and Vector Representations Logical vs. Physical Pixels - Images are modeled internally as an array of pixel values

More information

Lecture Color Image Processing. by Shahid Farid

Lecture Color Image Processing. by Shahid Farid Lecture Color Image Processing by Shahid Farid What is color? Why colors? How we see objects? Photometry, Radiometry and Colorimetry Color measurement Chromaticity diagram Shahid Farid, PUCIT 2 Color or

More information

Colour. Electromagnetic Spectrum (1: visible is very small part 2: not all colours are present in the rainbow!) Colour Lecture!

Colour. Electromagnetic Spectrum (1: visible is very small part 2: not all colours are present in the rainbow!) Colour Lecture! Colour Lecture! ITNP80: Multimedia 1 Colour What is colour? Human-centric view of colour Computer-centric view of colour Colour models Monitor production of colour Accurate colour reproduction Richardson,

More information

Digital Images. CCST9015 Oct 13, 2010 Hayden Kwok-Hay So

Digital Images. CCST9015 Oct 13, 2010 Hayden Kwok-Hay So Digital Images CCST9015 Oct 13, 2010 Hayden Kwok-Hay So 1983 Oct 13, 2010 2006 Digital Images - CCST9015 - H. So 2 Demystifying Digital Images Representation Hardware Processing 3 Representing Images R

More information

GRAPHICS TECHNOLOGY II

GRAPHICS TECHNOLOGY II GRAPHICS TECHNOLOGY II COLORS ARE PART OF OUR LIFE From the clothes we wear, to the things around us, the food we eat, the things we use- everything. Colors are said to activate the right brain for emotions.

More information

Hello, welcome to the video lecture series on Digital image processing. (Refer Slide Time: 00:30)

Hello, welcome to the video lecture series on Digital image processing. (Refer Slide Time: 00:30) Digital Image Processing Prof. P. K. Biswas Department of Electronics and Electrical Communications Engineering Indian Institute of Technology, Kharagpur Module 11 Lecture Number 52 Conversion of one Color

More information

Fundamentals of Multimedia

Fundamentals of Multimedia Fundamentals of Multimedia Lecture 2 Graphics & Image Data Representation Mahmoud El-Gayyar elgayyar@ci.suez.edu.eg Outline Black & white imags 1 bit images 8-bit gray-level images Image histogram Dithering

More information

Color Design Color Use in Organizational Systems

Color Design Color Use in Organizational Systems Color Use in Organizational Systems Image Source: www.bottomlinedesignawards.com/target.html Research shows that colors play a large part in human memory. In the world around us there are many examples

More information

Chapter 2 Fundamentals of Digital Imaging

Chapter 2 Fundamentals of Digital Imaging Chapter 2 Fundamentals of Digital Imaging Part 4 Color Representation 1 In this lecture, you will find answers to these questions What is RGB color model and how does it represent colors? What is CMY color

More information

Digital Image Processing. Lecture # 8 Color Processing

Digital Image Processing. Lecture # 8 Color Processing Digital Image Processing Lecture # 8 Color Processing 1 COLOR IMAGE PROCESSING COLOR IMAGE PROCESSING Color Importance Color is an excellent descriptor Suitable for object Identification and Extraction

More information

Computer Graphics: Graphics Output Primitives Primitives Attributes

Computer Graphics: Graphics Output Primitives Primitives Attributes Computer Graphics: Graphics Output Primitives Primitives Attributes By: A. H. Abdul Hafez Abdul.hafez@hku.edu.tr, 1 Outlines 1. OpenGL state variables 2. RGB color components 1. direct color storage 2.

More information

Wireless Communication

Wireless Communication Wireless Communication Systems @CS.NCTU Lecture 4: Color Instructor: Kate Ching-Ju Lin ( 林靖茹 ) Chap. 4 of Fundamentals of Multimedia Some reference from http://media.ee.ntu.edu.tw/courses/dvt/15f/ 1 Outline

More information

Introduction to Color Theory

Introduction to Color Theory Systems & Biomedical Engineering Department SBE 306B: Computer Systems III (Computer Graphics) Dr. Ayman Eldeib Spring 2018 Introduction to With colors you can set a mood, attract attention, or make a

More information

Dr. Shahanawaj Ahamad. Dr. S.Ahamad, SWE-423, Unit-06

Dr. Shahanawaj Ahamad. Dr. S.Ahamad, SWE-423, Unit-06 Dr. Shahanawaj Ahamad 1 Outline: Basic concepts underlying Images Popular Image File formats Human perception of color Various Color Models in use and the idea behind them 2 Pixels -- picture elements

More information

Image is a spatial representation of an object or a scene. (image of a person, place, object)

Image is a spatial representation of an object or a scene. (image of a person, place, object) Graphics & Images Table of Content 1. Introduction 2. Types of graphics 3. Resolution 4. Memory/Storage requirement 5. Types of images 6. Image colour schemes 7. Colour dithering 8. Image processing 9.

More information

Photoshop Elements Week 1 - Photoshop Elements Work Environment

Photoshop Elements Week 1 - Photoshop Elements Work Environment Menu Bar Just like any computer program, you have several dropdown menus to work with. Explore them all! But, most importantly remember to SAVE! Photoshop Elements Toolbox (with keyboard shortcut) Photoshop

More information

Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe

Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe ULTRAVIOLET GAMMA RAYS X-RAYS VISIBLE SPECTRUM INFRARED MICROWAVES RADIO WAVES VIOLET BLUE CYAN GREEN YELLOW RED MAGENTA The visible

More information

Unit 4.4 Representing Images

Unit 4.4 Representing Images Unit 4.4 Representing Images Candidates should be able to: a) Explain the representation of an image as a series of pixels represented in binary b) Explain the need for metadata to be included in the file

More information

Corporate Identity Quick Reference Guide

Corporate Identity Quick Reference Guide Corporate Identity Quick Reference Guide The Logo true form The Cold Jet logo is most effective when used on a white background. There is also a reversed version of the logo that is acceptable for use

More information

EnvSci 360 Computer and Analytical Cartography

EnvSci 360 Computer and Analytical Cartography EnvSci 360 Computer and Analytical Cartography Lecture 6 Mapping with Color Why Use Color? It is one of the available visual variables you can mix with other graphic elements to improve communication Color

More information

Digitizing Color. Place Value in a Decimal Number. Place Value in a Binary Number. Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally

Digitizing Color. Place Value in a Decimal Number. Place Value in a Binary Number. Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Fluency with Information Technology Third Edition by Lawrence Snyder Digitizing Color RGB Colors: Binary Representation Giving the intensities

More information

Alpha channels are basically saved selections. They do not affect how your image will be printed.

Alpha channels are basically saved selections. They do not affect how your image will be printed. Ben Willmore s Banish the fog of techno-babble with Ben s plain-english translations of the high-tech terminology behind Photoshop! For more Freebies and Goodies, go to: DigitalMastery.com 30-bit Alpha

More information

Commercial Art 1 Photoshop Study Guide. 8) How is on-screen image resolution measured? PPI - Pixels Per Inch

Commercial Art 1 Photoshop Study Guide. 8) How is on-screen image resolution measured? PPI - Pixels Per Inch Commercial Art 1 Photoshop Study Guide To help prepare you for the Photoshop test, be sure you can answer the following questions: 1) What are the three things should you do when you first open a Photoshop

More information

Unit 8: Color Image Processing

Unit 8: Color Image Processing Unit 8: Color Image Processing Colour Fundamentals In 666 Sir Isaac Newton discovered that when a beam of sunlight passes through a glass prism, the emerging beam is split into a spectrum of colours The

More information

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell By Frank Harrell Recommended Scanning Settings. Scan at a minimum of 300 DPI, or 600 DPI if expecting to OCR the document Scan in full color Save pages as JPG files with 75% compression and store them

More information

5/17/2009. Digitizing Color. Place Value in a Binary Number. Place Value in a Decimal Number. Place Value in a Binary Number

5/17/2009. Digitizing Color. Place Value in a Binary Number. Place Value in a Decimal Number. Place Value in a Binary Number Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Digitizing Color Fluency with Information Technology Third Edition by Lawrence Snyder RGB Colors: Binary Representation Giving the intensities

More information

TODAY STANDARD COLORS RGB COLOR CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE

TODAY STANDARD COLORS RGB COLOR CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE TODAY Computer components Binary numbers Text representation Color representation ( THE CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE STANDARD COLORS All standards-compliant

More information

Technology and digital images

Technology and digital images Technology and digital images Objectives Describe how the characteristics and behaviors of white light allow us to see colored objects. Describe the connection between physics and technology. Describe

More information

RGB COLORS. Connecting with Computer Science cs.ubc.ca/~hoos/cpsc101

RGB COLORS. Connecting with Computer Science cs.ubc.ca/~hoos/cpsc101 RGB COLORS Clicker Question How many numbers are commonly used to specify the colour of a pixel? A. 1 B. 2 C. 3 D. 4 or more 2 Yellow = R + G? Combining red and green makes yellow Taught in elementary

More information

WORKING WITH COLOR Monitor Placement Place the monitor at roughly right angles to a window. Place the monitor at least several feet from any window

WORKING WITH COLOR Monitor Placement Place the monitor at roughly right angles to a window. Place the monitor at least several feet from any window WORKING WITH COLOR In order to work consistently with color printing, you need to calibrate both your monitor and your printer. The basic steps for doing so are listed below. This is really a minimum approach;

More information

MOTION GRAPHICS BITE 3623

MOTION GRAPHICS BITE 3623 MOTION GRAPHICS BITE 3623 DR. SITI NURUL MAHFUZAH MOHAMAD FTMK, UTEM Lecture 1: Introduction to Graphics Learn critical graphics concepts. 1 Bitmap (Raster) vs. Vector Graphics 2 Software Bitmap Images

More information

Multimedia Systems and Technologies

Multimedia Systems and Technologies Multimedia Systems and Technologies Faculty of Engineering Master s s degree in Computer Engineering Marco Porta Computer Vision & Multimedia Lab Dipartimento di Ingegneria Industriale e dell Informazione

More information

Logo guidelines National Physician Suicide Awareness Day

Logo guidelines National Physician Suicide Awareness Day Logo guidelines National Physician Suicide Awareness Day Prepared by Jeff Ondeyka on 4/30/18 Logos Full color Grayscale Color options: Full Color is preferred and should be used whenever possible. Grayscale

More information

Introduction to Color Theory

Introduction to Color Theory Introduction to Color Theory This overview will give you an essential primer on the definition of color, from its origins to current day definitions. It provides a deeper understanding of the printing

More information

Image Perception & 2D Images

Image Perception & 2D Images Image Perception & 2D Images Vision is a matter of perception. Perception is a matter of vision. ES Overview Introduction to ES 2D Graphics in Entertainment Systems Sound, Speech & Music 3D Graphics in

More information

Notes on colour mixing

Notes on colour mixing INFORMATION SHEET These notes, with the diagrams in colour, can be found on the internet at: http://www.andrewnewland.com/homepage/teaching Notes on colour mixing Andrew Newland T E A C H I N G A R T &

More information

Using Adobe Photoshop

Using Adobe Photoshop Using Adobe Photoshop 1-1 - Advantages of Digital Imaging Until the 70s, using computers for images was unheard of outside academic circles. As general purpose computers have become faster with more capabilities,

More information

Digital Imaging & Photoshop

Digital Imaging & Photoshop Digital Imaging & Photoshop Photoshop Created by Thomas Knoll in 1987, originally called Display Acquired by Adobe in 1988 Released as Photoshop 1.0 for Macintosh in 1990 Released the Creative Suite in

More information

Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe

Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe Our senses don t deceive us; our judgment does. Johann Wolfgang von Goethe 1 ULTRAVIOLET X-RAYS GAMMA RAYS VISIBLE MICROWAVES SPECTRUM INFRARED RADIO WAVES VIOLET BLUE CYAN GREEN YELLOW RED MAGENTA The

More information

A Basic Guide to Photoshop Adjustment Layers

A Basic Guide to Photoshop Adjustment Layers A Basic Guide to Photoshop Adjustment Layers Photoshop has a Panel named Adjustments, based on the Adjustment Layers of previous versions. These adjustments can be used for non-destructive editing, can

More information

9/13/2017. Alpha Channels

9/13/2017. Alpha Channels Alpha Channels 1 Primary colors is a set of pigments that can be combined in various ratios to create every color in the visible spectrum. and are combinations of a different set of primary colors: the

More information

10.2 Color and Vision

10.2 Color and Vision 10.2 Color and Vision The energy of light explains how different colors are physically different. But it doesn't explain how we see colors. How does the human eye see color? The answer explains why computers

More information

Data Representation. "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't."

Data Representation. There are 10 kinds of people in the world, those who understand binary numbers, and those who don't. Data Representation "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't." How Computers See the World There are a number of very common needs for a computer,

More information

QUICK START (See following pages for detailed instructions.)

QUICK START (See following pages for detailed instructions.) REATING GRAPHIS for use in books and journals QUIK START (See following pages for detailed instructions.) GENERAL GUIDELINES reate graphics at 100% of the size at which they will be printed. Do not use

More information

Digital Information. INFO/CSE 100, Spring 2006 Fluency in Information Technology.

Digital Information. INFO/CSE 100, Spring 2006 Fluency in Information Technology. Digital Information INFO/CSE, Spring 26 Fluency in Information Technology http://www.cs.washington.edu/ 5/8/6 fit-9-more-digital 26 University of Washington Reading Readings and References» Fluency with

More information

GT-782 Printer Driver ver

GT-782 Printer Driver ver GT-782 Printer Driver ver. 2.1.0 February, 2011 Thank you for downloading the new version of GT-782 Printer Driver ver. 2.1.0. Refer to the update information below and improve your printing with GT-782.

More information

IDENTITY GUIDELINES AND GRAPHIC STANDARDS MANUAL SPRING 2017

IDENTITY GUIDELINES AND GRAPHIC STANDARDS MANUAL SPRING 2017 IDENTITY GUIDELINES AND GRAPHIC STANDARDS MANUAL SPRING 2017 THE IMPORTANCE OF GRAPHIC STANDARDS The United Mail logo is our unique graphic signature. It is one of the most visible aspects of the company

More information

Using Photoshop for Color Demonstration

Using Photoshop for Color Demonstration (Submitted to the 1997 IGAEA Visual Communication Journal) Using Photoshop for Color Demonstration Bob Chung, RIT Abstract Photoshop features, such as layers and channels, are used to demonstrate how concepts

More information

Color and More. Color basics

Color and More. Color basics Color and More In this lesson, you'll evaluate an image in terms of its overall tonal range (lightness, darkness, and contrast), its overall balance of color, and its overall appearance for areas that

More information

Fig Color spectrum seen by passing white light through a prism.

Fig Color spectrum seen by passing white light through a prism. 1. Explain about color fundamentals. Color of an object is determined by the nature of the light reflected from it. When a beam of sunlight passes through a glass prism, the emerging beam of light is not

More information

a color companion for designers of any skill level

a color companion for designers of any skill level a color companion for designers of any skill level A Shanty Studios Publication 2017 CONTENTS Introduction....4 Color....6 Models...8 Light....10 Temperature....12 Gamuts....14 Red....16 Orange....18 Yellow....20

More information