× back

Intro to Computer Graphics

Advantages of Computer Graphics

Applications of Computer Graphics

Types of Computer Graphics

Basic Terminology

Understanding Pixels: The Basics and Color Representation

We see images on our screens every day; whether it's on our phones, computers, or TVs. But have you ever wondered what actually makes up these images? The answer lies in something called pixels. Let's break it down in a simple and detailed way.

What is a Pixel?

A pixel (short for picture element) is the smallest unit of a digital image. Think of it as a tiny square or dot of color that, when combined with millions of other pixels, forms a complete image.

  • If you zoom in on a digital image, you'll eventually see a grid of tiny colored squares.
  • Each square is a pixel, and it has a specific color and brightness.

Why Are Pixels Important?

Everything we see on a screen is made up of pixels. Whether you're watching a movie, playing a game, or editing a photo, the quality and clarity of what you see depend on how many pixels are there and how they are arranged.

The Components of a Pixel: RGB Color Model

Each pixel in a digital screen isn’t just a single solid color. Instead, it is made up of three sub-pixels that emit different amounts of Red (R), Green (G), and Blue (B) light.

This is called the RGB (Red, Green, Blue) Color Model because:

  • Red (R)
  • Green (G)
  • Blue (B)

By adjusting the brightness of these three colors, we can create millions of different colors.

Understanding Bit Depth and Color Representation

To store and display colors, each of the three RGB components has a certain bit depth, which determines how many different shades each color can have.

Bit Depth Explained

Each color channel (Red, Green, and Blue) is assigned a certain number of bits. The most common is 8-bit per channel, meaning each color can have 256 different shades (ranging from 0 to 255).

  • 0 means no intensity (black).
  • 255 means full intensity (brightest).

Since a pixel has three color channels (RGB), the total number of possible colors in an 8-bit system is:

256×256×256 = 16,777,216 (around 16.7 million colors)

This is called 24-bit color depth because each pixel is made up of 8 bits per channel (8 Red + 8 Green + 8 Blue = 24 bits).

Other Bit Depths:

  • 1-bit (Black & White only) → 2 colors
  • 8-bit (Grayscale or indexed color) → 256 colors
  • 16-bit (High color) → 65,536 colors
  • 24-bit (True color, used in most displays) → 16.7 million colors
  • 32-bit (Includes alpha for transparency effects) → Same as 24-bit but with an extra 8-bit alpha channel for transparency.

How RGB Values Create Colors

By mixing different intensities of R, G, and B, we can create a variety of colors.

Some common RGB combinations:

Color Red (R) Green (G) Blue (B)
Black 0 0 0
White 255 255 255
Red 255 0 0
Green 0 255 0
Blue 0 0 255
Yellow 255 255 0
Cyan 0 255 255
Magenta 255 0 255
Gray 128 128 128

Image Resolution and Pixel Density

  • Now that we have a solid understanding of pixels, let’s explore two fundamental concepts that directly impact the quality of an image: Image Resolution and Pixel Density (PPI - Pixels Per Inch). These two factors determine how sharp, detailed, and clear an image appears on a screen or in print.
  • If you've ever wondered why a 4K display looks so much sharper than a 1080p screen or why some printed images appear blurry while others look crisp, understanding resolution and pixel density will make things much clearer!

Image Resolution: The Total Number of Pixels in an Image

What is Image Resolution?

Resolution refers to the total number of pixels that make up an image. It’s typically expressed as Width × Height in pixels.

For example:

  • 1920 × 1080 (Full HD) → 2,073,600 pixels (about 2.07 megapixels)
  • 3840 × 2160 (4K UHD) → 8,294,400 pixels (about 8.29 megapixels)

The higher the resolution, the more pixels are used to display the image, which means more details and a clearer picture.

  • When a camera has 48 megapixels, it means the camera can capture 48 million pixels in each photo. To break it down, 1 megapixel equals 1 million pixels. So, a 48-megapixel camera captures 48,000,000 pixels.
  • More pixels in an image mean higher resolution, which translates to clearer, sharper, and more detailed photos. With 48 million pixels, you get much more detail than a camera with, say, 8 or 12 megapixels.
  • So, in short, a 48-megapixel camera can capture an image made up of 48 million tiny dots of color, allowing for much more precision and better quality, especially when you zoom in or crop the photo.

Why Does Higher Resolution Look Better?

Let’s think of an image as a mosaic. Imagine you’re creating a painting using small colored tiles.

  • If you have fewer tiles (low resolution) → the image looks blocky and less detailed.
  • If you have more tiles (high resolution) → the image is smoother and has finer details.

This is exactly how digital images work! More pixels = more detail.

Types of Image Resolution

  • Screen Resolution (For Digital Displays)
    • The number of pixels that a display can show.
    • Examples: 720p (1280 × 720), 1080p (1920 × 1080), 4K (3840 × 2160), 8K (7680 × 4320).
    • Affects image clarity, sharpness, and detail on screens.
  • Print Resolution (For Physical Prints)
    • Printed images are measured in DPI (Dots Per Inch) instead of pixels.
    • A 300 DPI print is considered high quality for photos.
  • Camera Resolution (Megapixels in Cameras)
    • The total number of pixels in an image captured by a camera.
    • Example: A 12 MP (megapixel) camera captures images with about 12 million pixels.

How Resolution Affects Image Quality

  • 720p (1280×720) - Used in low-end monitors, budget phones. Looks decent, but lacks fine detail.
  • 1080p (1920×1080) - Found in most laptops, monitors, and TVs. Clear and sharp for most users.
  • 4K (3840×2160) - Common in high-end monitors, gaming, and TV screens. Extremely sharp and detailed.
  • 8K (7680×4320) - Used in professional displays and high-end TVs. Overkill for most users.

Example: Calculating the Storage Required for an Image

Let’s take an image with a resolution of 1000 × 750 pixels.

  • Step 1: Find the Total Number of Pixels
    • 1000 × 750 = 750,000 pixels

    • This means the image is made up of 750,000 tiny colored squares.

  • Step 2: Find the Total Storage Required
    • Now, let’s assume 24-bit color depth (8 bits per channel):

    • 750,000 × 24 bits per pixel = 18,000,000 bits

    • Since 8 bits = 1 byte, we divide by 8:

    • 18,000,000 ÷ 8 = 2,250,000 bytes

  • Step 3: Convert Bytes to Kilobytes (KB)
    • To convert bytes to kilobytes, divide by 1024:

    • 2,250,000 bytes ÷ 1024 = 2,199.22 KB

    • This means the image takes up about 2,199.22 KB of storage.

  • Step 4: Convert Kilobytes to Megabytes (MB)
    • If you want the size in megabytes, you divide by 1024 again:

    • 2,199.22 KB ÷ 1024 = 2.15 MB

    • So, this image (1000 × 750 pixels, 24-bit color) will take up about 2.15 MB of storage.

Summary: The total storage required for the image is approximately 2.15 MB (or 2,199.22 KB).

Pixel Density (PPI - Pixels Per Inch)

What is Pixel Density?

While resolution tells us how many pixels an image has, Pixel Density (PPI) tells us how tightly packed those pixels are within a given space.

  • Higher PPI = Sharper image
  • Lower PPI = More pixelated image

How PPI Works

Think of pixel density like a grid of dots on a piece of paper:

  • If you squeeze a lot of dots into a small space → the image looks smooth and detailed.
  • If the dots are spread out too much → the image looks pixelated.

Pixel Density in Different Devices

  • Standard Monitor - Example Resolution: 1920 × 1080, Screen Size: 24 inches, PPI Approx: 92
  • Retina Display (MacBook) - Example Resolution: 2560 × 1600, Screen Size: 13 inches, PPI Approx: 227
  • Smartphone Display - Example Resolution: 2400 × 1080, Screen Size: 6 inches, PPI Approx: 400+
  • 4K TV - Example Resolution: 3840 × 2160, Screen Size: 55 inches, PPI Approx: 80

Why Does PPI Matter?

If you’ve ever compared an iPhone screen to a laptop screen, you might have noticed that text and images look much sharper on the phone. This is because phones have very high PPI, while laptops and monitors have a lower PPI.

  • Low PPI (<100 PPI) - Can look pixelated when viewed up close.
  • High PPI (>300 PPI) - Crisp, detailed images. Common in smartphones, high-end laptops, and tablets.

How to Calculate PPI?

To calculate PPI, we use this formula:

PPI = Diagonal Resolution (in pixels) ÷ Screen Size (in inches)

Example: Calculating PPI for a 1920 × 1080 resolution on a 24-inch monitor

  • Find the diagonal resolution using the Pythagorean theorem:
    • (1920² + 1080²) = 3,686,400 + 1,166,400 = 4,852,800
    • √4,852,800 ≈ 2202
  • Divide by screen size:
    • 2202 ÷ 24 ≈ 92 PPI

So, a 24-inch Full HD monitor has about 92 PPI.

For comparison:

  • 13-inch MacBook Pro - Resolution: 2560 × 1600, PPI Approx: 227
  • 6-inch Smartphone - Resolution: 2400 × 1080, PPI Approx: 400+

Understanding Aspect Ratio in Depth

Aspect ratio plays a big role in how images, videos, and screens look. If you’ve ever seen a video that looks stretched or has black bars on the sides, that’s because of aspect ratio differences. Let’s break it down step by step.

What is Aspect Ratio?

Aspect ratio is simply the proportional relationship between the width and height of an image or screen. It’s written as:

Aspect Ratio = Width ÷ Height

For example:

  • 1920 × 1080 resolution → 16:9 aspect ratio
  • 1280 × 720 resolution → 16:9 aspect ratio
  • 3840 × 2160 resolution → 16:9 aspect ratio

Why is Aspect Ratio Important?

Aspect ratio affects how content is displayed. If you try to display a 16:9 video on a 4:3 screen, you’ll either:

  • Stretch the image, making it look distorted, or
  • Add black bars (letterboxing or pillarboxing) to maintain the original aspect ratio.

So, different aspect ratios are used for different purposes to optimize the viewing experience.

Common Aspect Ratios and Where They Are Used

  • 4:3 (Standard TV/Old Monitors)
    • Common Resolutions: 1024 × 768, 800 × 600
    • Used in: Older CRT monitors, classic TV shows, projectors
  • 16:9 (Widescreen, HD, 4K)
    • Common Resolutions: 1920 × 1080, 1280 × 720, 3840 × 2160
    • Used in: Modern TVs, laptops, YouTube, gaming
  • 21:9 (Ultrawide Monitors & Cinema)
    • Common Resolutions: 2560 × 1080, 3440 × 1440
    • Used in: Gaming monitors, cinematic movies
  • 32:9 (Super Ultrawide Monitors)
    • Common Resolutions: 3840 × 1080, 5120 × 1440
    • Used in: High-end gaming, productivity setups
  • 1:1 (Square Format)
    • Common Resolutions: 1080 × 1080
    • Used in: Instagram, profile pictures
  • 9:16 (Vertical Video)
    • Common Resolutions: 1080 × 1920
    • Used in: TikTok, Instagram Reels, Snapchat

The Shift from 4:3 to 16:9

Back in the early 2000s, 4:3 aspect ratio was the standard for TVs and monitors. But as HD content became more common, 16:9 widescreen format took over because it provided:

  • A more cinematic experience
  • Better fit for modern displays
  • More screen space for multitasking

Today, 16:9 is the default for most screens, including laptops, TVs, and smartphones in landscape mode.

How Aspect Ratio Affects Viewing Experience

  1. Watching Videos and Movies
    Ever watched a movie and noticed black bars on the top and bottom? That happens when the movie's aspect ratio is wider than the screen.
    • 16:9 video on a 16:9 screen → Perfect fit
    • 21:9 movie on a 16:9 screen → Black bars (letterboxing) appear on top and bottom
    • 16:9 video on a 4:3 screen → Black bars (pillarboxing) appear on the sides
  2. Gaming and Productivity
    • Ultrawide monitors (21:9) provide more horizontal screen space in games and work applications.
    • 32:9 monitors are like having two 16:9 screens side by side, great for multitasking.
  3. Social Media and Vertical Videos
    • 9:16 aspect ratio (vertical) is used for platforms like TikTok, Instagram Reels, and Snapchat because people hold their phones vertically.
    • If you upload a 16:9 video on TikTok, it will appear with huge black bars or get cropped.

How to Calculate Aspect Ratio

To find the aspect ratio of any resolution, simply divide width by height, then reduce it to its simplest form.

  • Example 1: For 1920 × 1080
    • 1920 ÷ 1080 = 1.777
    • Since 16 ÷ 9 = 1.777, the aspect ratio is 16:9.
  • Example 2: For 2560 × 1080
    • 2560 ÷ 1080 = 2.37
    • Since 21 ÷ 9 = 2.33, it's an approximate 21:9 aspect ratio.

Changing Aspect Ratio: Cropping vs. Stretching

If you have an image or video with a different aspect ratio than the display, you can adjust it in different ways:

  • Stretching → Fills the screen but makes everything look distorted.
  • Cropping → Cuts off parts of the image to fit the screen.
  • Letterboxing/Pillarboxing → Adds black bars to maintain the original aspect ratio.

For the best results, always use content that matches your display’s native aspect ratio.

CMY Color Model

  • The CMY color model is used in printing, and it works differently from how colors are created on screens. While screens use the RGB color model, which creates colors by adding light, CMY works by removing light. This is why it’s called a subtractive color model.
  • Imagine a white piece of paper. White reflects all the colors of light. When you print with ink, the ink absorbs certain parts of the light, and only the remaining light is what you see.
  • In the CMY model, there are three primary colors of ink:
    • Cyan (C)
    • Magenta (M)
    • Yellow (Y)
  • Each of these colors of ink removes a specific part of the light:
    • Cyan absorbs red light.
    • Magenta absorbs green light.
    • Yellow absorbs blue light.
  • By mixing these inks, printers can create a wide range of colors. When the cyan, magenta, and yellow inks are used together, they ideally absorb all the colors of light and leave nothing to reflect, which should create black. However, in practice, this mix results in a dark, muddy color, which is why printers use black ink to improve the color quality.
  • The key takeaway from the CMY model is that it works by subtracting light. Instead of adding colors like on a screen, the printer removes certain wavelengths (or parts) of light to create the final color you see on the paper.

CMYK Color Model (Cyan, Magenta, Yellow, Black)

  • The CMYK color model is an extension of the CMY model and is primarily used in printing. It stands for Cyan, Magenta, Yellow, and Black. While the CMY model works by removing light to create colors, CMYK adds black ink to improve the color depth and quality of printed images.
  • In the CMY model, mixing the three primary colors of cyan, magenta, and yellow ideally creates black, but in reality, it results in a muddy dark brown. This is because mixing inks doesn’t produce a true, deep black, which is why printers use an additional black (K) ink to get better contrast and sharper details.
  • Why Add Black (K)?
    • Better depth and clarity: Using just cyan, magenta, and yellow often results in a faded or dull black. Black ink is needed to create rich, true blacks and improve overall contrast in printed images.
    • Cost and efficiency: Using a separate black ink cartridge is more economical than mixing three colors to create black every time, saving on ink costs.
  • How CMYK Works
    • In CMYK, each color of ink still works to absorb certain parts of the light:
      • Cyan (C) absorbs red light.
      • Magenta (M) absorbs green light.
      • Yellow (Y) absorbs blue light.
      • Black (K) is used for the darkest areas and to sharpen details.
  • When all four inks are used in combination, they create a full range of colors, allowing printers to reproduce everything from bright colors to deep blacks with high quality.
  • The Process of Subtracting Light
    • Just like CMY, the CMYK model subtracts (removes) parts of light from a white surface (paper) to form the desired color. The difference here is the use of black ink to make the print look darker and more detailed, creating a richer color result than CMY alone.
  • The CMYK model is the standard in color printing because it combines three primary colors (cyan, magenta, and yellow) with a separate black ink (K) to produce high-quality prints with true-to-life colors.

Display Devices

Cathode Ray Tube

  • A Cathode Ray Tube (CRT) is an electronic display device used primarily in older televisions and computer monitors. It works by firing electrons at a phosphor-coated screen, which lights up to form an image. The CRT operates by manipulating the electron beam and using a series of components to direct it onto the screen in such a way that it creates a full image.

Main Components of a CRT

  1. Connector Pins and Base
    • The CRT’s base contains connector pins that connect the tube to external circuits. These pins deliver power and control signals to the internal components, like the electron gun and deflection system.
    • They serve as the interface between the CRT and the rest of the system, providing necessary power and signals to function properly.
  2. Electron Gun
    • Located at the rear of the tube, the electron gun is responsible for emitting a stream of electrons that are directed toward the screen.
    • It consists of the following parts:
      • Cathode: A heated filament that emits electrons when heated.
      • Control Grid: Regulates the flow of electrons from the cathode to ensure the correct brightness and intensity.
      • Anode: Attracts the negatively charged electrons and accelerates them toward the screen.
    • Focusing System
      • This system focuses the electron beam into a fine point. It is made up of electromagnetic or electrostatic lenses that direct the beam, ensuring that the electrons don’t scatter.
      • By controlling the beam’s focus, the image produced is sharp and clear.
    • Deflection System (Vertical and Horizontal)
      • The deflection system moves the electron beam across the screen. It works in two directions:
        • Vertical Deflection: Uses electromagnetic coils that create a magnetic field to move the electron beam up and down on the screen.
        • Horizontal Deflection: Uses a separate set of coils or deflection plates to move the beam left and right.
    • Phosphor-Coated Screen
      • The front of the CRT is coated with phosphor material that glows when hit by the electron beam. This screen is divided into red, green, and blue sections (RGB), allowing the creation of full-color images by controlling the intensity and duration of electron impacts.

Working of a CRT

Now, let’s understand how all these components work together to display an image.

  1. Electron Emission (Electron Gun)
    • The electron gun at the back of the CRT emits electrons. The cathode inside the gun heats up, causing it to release electrons.
    • The control grid adjusts how many electrons can pass through to ensure the correct brightness for the image.
  2. Focusing the Electron Beam: Once the electrons are emitted, they need to be focused into a fine beam so that they don’t spread out and blur the image. The focusing system directs the beam, ensuring it stays tight and clear.
  3. Deflecting the Electron Beam (Vertical and Horizontal)
    • The electron beam is directed across the screen in a raster pattern—starting at the top-left corner and sweeping across to the right, then moving down to the next line.
    • The vertical deflection system moves the beam up or down using electromagnetic coils or deflection plates. The amount of voltage applied to these coils determines the vertical position of the beam.
    • Similarly, the horizontal deflection system moves the beam left or right. It works in synchronization with the vertical system to ensure the beam covers the entire screen.
    • Both deflection systems allow the electron beam to cover the whole screen systematically.
  4. Phosphor Coating and Image Creation
    • The phosphor-coated screen reacts when the electron beam hits it. The phosphor material emits light in different colors (red, green, blue) depending on the section of the screen the electron hits.
    • The screen is made up of millions of tiny phosphor dots or pixels, and each pixel consists of subpixels for red, green, and blue colors.
    • The electron beam is directed to specific pixels, exciting the phosphor and making it glow, which in turn creates part of the image.
    • By controlling the intensity and the location of the electron beam, a full-color image is formed, pixel by pixel.
  5. Rapid Image Refresh
    • The CRT works by continuously refreshing the image many times per second. This happens so quickly that our eyes perceive a stable image.
    • The scanning of the electron beam happens in a very fast, systematic pattern, creating the illusion of a steady image.
    • This is necessary because the phosphorus coating on the screen has a decaying property—it can only glow for a short time before it fades. To keep the image from disappearing, the electron beam must refresh the screen rapidly.

Scanning Types in CRT

In a CRT, scanning refers to how the electron beam moves across the screen to create an image. There are two main types of scanning:

  1. Raster Scan
  2. Random Scan

Raster Scan

Raster scan is the most common type of scanning used in televisions and monitors. In this method, the electron beam systematically moves across the screen in a fixed pattern, covering the entire screen line by line from top to bottom.

  • How It Works
    • The electron beam starts at the top-left corner of the screen.
    • It moves horizontally from left to right while turning pixels on or off to create part of the image.
    • When it reaches the right edge, the beam quickly moves back to the left in a process called horizontal retrace.
    • The beam then moves down to the next line and repeats the process.
    • After scanning all the lines, the beam reaches the bottom-right corner.
    • It then returns to the top-left corner in a process called vertical retrace and starts scanning the next frame.
    This process repeats many times per second to maintain a smooth and continuous image.
  • Characteristics of Raster Scan
    • Used in TVs, monitors, and digital displays.
    • Covers the entire screen, whether the image needs it or not.
    • Requires a frame buffer, which stores the image before it is displayed.
    • Works well for detailed, complex images.
    • May experience flickering, which is reduced by increasing the refresh rate.
  • Example Applications
    • Televisions and computer monitors, Video games and multimedia displays, Digital image processing.

Random Scan

Random scan, also known as vector scan or stroke writing, is different from raster scanning because the electron beam moves only to the parts of the screen where drawing is required. It does not scan the entire screen line by line.

  • How It Works
    • The beam directly moves from one point to another to draw the image.
    • Instead of scanning the whole screen, it only draws lines, curves, and shapes as needed.
    • The beam moves in any order instead of a fixed top-to-bottom pattern.
    • The image is drawn by connecting points to form shapes, similar to how a pen plots points on paper.
  • Characteristics of Random Scan
    • Used in vector displays and older oscilloscopes (used to measure electrical signals in circuits).
    • Produces sharp, flicker-free images for simple line drawings.
    • Does not require a frame buffer because only the necessary parts of the screen are updated.
    • Not suitable for complex, detailed images because the beam must trace every line individually.
  • Example Applications
    • Early CAD (Computer-Aided Design) systems.
    • Oscilloscopes and scientific graphing tools.
    • Military radar and air traffic control screens.

Comparison: Raster Scan vs. Random Scan

  • How it works:
    1. Raster Scan: The electron beam systematically moves line by line from top to bottom, scanning the entire screen even if only a small portion of the image changes. Each pixel on the screen is updated based on the image stored in the frame buffer.
    2. Random Scan: The electron beam directly moves to specific points on the screen where drawing is required, instead of scanning the entire screen. It draws shapes like lines and curves by moving from one coordinate to another, like a pen on paper.
  • Speed:
    1. Raster Scan: Slower compared to random scan because the entire screen is redrawn multiple times per second, even if some parts remain unchanged. The refresh rate determines how often the screen is updated (e.g., 60Hz means 60 times per second).
    2. Random Scan: Faster for line-based graphics because it only draws the necessary parts of the image instead of scanning the whole screen. It does not need to continuously refresh every pixel, making it more efficient for simple images.
  • Image Type:
    1. Raster Scan: Best suited for detailed and complex images such as photographs, videos, and realistic graphics. Since every pixel is individually updated, it can handle high-resolution images smoothly.
    2. Random Scan: Works well for simple line drawings and geometric shapes. Since it does not scan the entire screen, it is inefficient for complex images that require shading and detailed textures.
  • Flickering:
    1. Raster Scan: May experience flickering, especially at lower refresh rates. This happens because the image needs to be continuously refreshed, and if the refresh rate is too low, the human eye perceives noticeable flickers. Higher refresh rates (e.g., 120Hz) reduce flickering.
    2. Random Scan: Produces minimal flicker since the electron beam directly draws the necessary parts and does not rely on a full-screen refresh. This makes it more stable for applications that require precision, such as scientific measurements and CAD drawings.
  • Used In:
    1. Raster Scan: Widely used in TVs, computer monitors, gaming consoles, and multimedia displays where full-screen graphics, colors, and animations are needed. All modern digital screens use raster scanning to create smooth visuals.
    2. Random Scan: Mostly used in CAD (Computer-Aided Design) systems, oscilloscopes, and radar displays where only wireframe graphics or simple geometric patterns are needed. It was popular in early computer graphics systems before raster scanning became dominant.
  • Fame Buffer Needed?:
    1. Raster Scan: Yes, a frame buffer is required to store image data before it is displayed. The frame buffer holds pixel information and refreshes the screen continuously, ensuring smooth images.
    2. Random Scan: No, since the beam only moves to the required points, there is no need for a frame buffer. The image is directly generated by controlling the beam’s movement, reducing memory requirements.
  • Quick Working Difference:
    1. Raster Scan: Think of this like how you read a book—line by line, from top to bottom. The electron beam sweeps across the entire screen, updating every pixel whether it needs to change or not. Even if only a small part of the image changes, the whole screen gets refreshed again and again. This is how TVs, monitors, and modern displays work.
    2. Random Scan: Now, imagine drawing with a pen. Instead of covering everything, you only move the pen where needed to create lines, curves, or shapes. That’s exactly how Random Scan works—the electron beam jumps directly to the parts that need drawing instead of scanning the whole screen. This makes it perfect for simple line drawings, like CAD designs or radar screens.
    So basically, Raster Scan is like a typewriter (covering everything line by line), while Random Scan is like a pen (drawing only what’s needed).

DVST (Direct View Storage Tube)

What is DVST?

  • DVST stands for Direct View Storage Tube, a type of display device used to store and display images without requiring constant refreshing.
  • Unlike modern displays, once an image is drawn on a DVST screen, it remains visible until erased.

Step-by-Step Working of DVST (Direct View Storage Tube)

Step 1: Writing the Image – The Role of the Primary Gun

The first step in DVST is creating the image, which is done by the Primary Electron Gun. This gun generates a high-energy electron beam that is directed toward the screen. However, before it reaches the screen, the beam passes through two important systems:

  1. Focusing System – This ensures the electron beam remains sharp and precise, preventing blurry or distorted images.
  2. Deflection System – This controls the movement of the beam, allowing it to draw different shapes and patterns on the screen.
Now, instead of directly displaying the image, this electron beam interacts with a special Storage Grid. When the beam hits the Storage Grid, it creates an electric charge pattern that represents the image. This means the image is now stored, but we still can’t see anything yet. The Storage Grid essentially acts like an invisible memory that holds the drawing before it is displayed.

Step 2: Making the Image Visible – The Role of the Flood Gun

  • Once the image is stored, the Flood Gun takes over. Unlike the Primary Gun, which moves around and draws, the Flood Gun emits a continuous flow of low-energy electrons that spread across the entire screen. These electrons don’t carry an image themselves; instead, they act like a background light source.
  • Before reaching the screen, the flood electrons pass through the Collector Mesh, which helps filter out unnecessary electrons. This ensures that only the required electrons interact with the Storage Grid. Now, here’s where the magic happens—
    • Where the Storage Grid has a stored charge (from the Primary Gun), it allows the flood electrons to pass through.
    • Where there is no charge, the grid blocks the electrons.
  • This selective passing of electrons creates the final image on the Phosphor-Coated Screen. The phosphor coating glows when struck by the flood electrons, making the stored image visible to the viewer.

Step 3: Keeping the Image Stable – Why DVST Doesn’t Flicker

  • One major advantage of DVST is that once an image is written, it remains on the screen without flickering. This is because the Storage Grid continues to hold the charge, and the Flood Gun continuously lights it up. Unlike traditional CRT monitors, which need to refresh the image multiple times per second, DVST keeps displaying the same image without needing constant updates.
  • This property made DVST useful for applications where stable images were required for a long time, such as radar displays, industrial monitors, and scientific instruments.

Step 4: Erasing & Redrawing – The Major Limitation

  • The biggest downside of DVST is that it cannot partially update the image. If any part of the image needs to change, the entire screen must be erased and redrawn from scratch.
  • To erase an image, the Storage Grid’s charge must be neutralized, completely removing the stored pattern. Once this happens, the screen becomes entirely blank, and the Primary Gun must redraw everything from the beginning.
  • This makes DVST very slow for animations or dynamic displays, as even small updates require erasing and redrawing the entire screen. That’s why it eventually became obsolete, replaced by technologies that allow fast and smooth image updates.

Advantages of DVST

  • Stable Image – No Flickering: One of the biggest advantages of DVST is that once an image is displayed, it remains visible without needing continuous refreshing. In traditional CRT monitors, the electron beam must redraw the image multiple times per second to keep it visible, which can cause flickering if the refresh rate is too low. However, in DVST, the image is stored electrically in the storage grid, and the flood gun continuously lights it up. This means there is no need for repeated redrawing, making it ideal for applications that require stable and flicker-free images.
  • Good for Detailed Graphics – No Need for Constant Redrawing: DVST is particularly useful for displaying detailed and intricate graphics, such as technical drawings, maps, and engineering blueprints. Since the image is permanently stored in the storage grid until erased, there is no risk of distortion or loss of detail due to frequent refreshing. This was especially beneficial in scientific and industrial fields where high-precision graphics were necessary, such as displaying waveforms, architectural designs, and weather charts.
  • Useful for Scientific and Industrial Applications: DVST found extensive use in specialized fields where stable and precise visuals were critical. Some common applications included:
    • Radar Displays – Used in military and aviation systems to track aircraft, ships, and weather conditions. Since radar screens need to display a stable image for long periods, DVST was an ideal choice.
    • Oscilloscopes – Used in electronics and physics labs to study waveforms and signals. The ability to hold an image without flickering made it easier for scientists and engineers to analyze data.
    • Medical Imaging – Early medical imaging devices, such as X-ray monitors and electrocardiogram (ECG) displays, used DVST to provide stable images for diagnosis.
    • Control Panels in Power Plants and Factories – DVST was used in process control systems, where important real-time data, such as temperature, pressure, and electrical flow, needed to be displayed clearly for operators.

Disadvantages of DVST

  • Cannot Update Part of the Image – Requires Full Erasure & Redrawing: One of the biggest drawbacks of DVST is that it does not allow partial updates. If any change is needed in the displayed image, the entire screen must be completely erased and redrawn from scratch. This makes it highly inefficient for dynamic applications, such as interactive systems or gaming, where frequent updates are required.
    For example, if a small change was needed in a radar display, the entire map would have to be erased and redrawn, causing delays and inefficiencies. This limitation made DVST unsuitable for interactive applications where real-time updates are necessary.
  • Slow for Animations – Not Suitable for Video or Real-Time Graphics: Since DVST cannot refresh parts of the screen independently, it is extremely slow for animations and real-time graphics. Unlike modern screens, where images are updated multiple times per second, DVST can only display static images until manually erased. This makes it unsuitable for applications like video playback, gaming, and interactive graphics.
    For example:
    • A moving object in a simulation would require the entire screen to be erased and redrawn at each step, making animations impractically slow.
    • A video display would be impossible, as video requires constant updates at high speed (typically 24-60 frames per second).
  • Outdated Technology – Replaced by LCD, LED, and OLED: With the advancement of display technologies, DVST quickly became obsolete. Newer display systems such as LCD (Liquid Crystal Display), LED (Light Emitting Diode), and OLED (Organic Light Emitting Diode) offered significant improvements:
    • Faster Refresh Rates – Modern displays can update images in real time, making them ideal for gaming, videos, and dynamic applications.
    • Lower Power Consumption – Unlike DVST, which requires continuous electron flow, LCDs and OLEDs consume much less power, making them more energy-efficient.
    • Slimmer and Lighter Design – DVST screens were bulky and heavy, whereas modern displays are sleek and portable.
    Due to these advancements, DVST is now primarily a historical topic, studied for its role in the evolution of computer graphics and display technology.

Flat Panel Display

A Flat Panel Display (FPD) is a thin, lightweight display technology that replaces the bulky Cathode Ray Tube (CRT) screens. Unlike CRTs, which require a large vacuum tube, FPDs use modern electronic methods to generate images, making them slimmer, energy-efficient, and more portable.

Flat Panel Display (FPD) – Advantages Over CRT

Flat-panel displays (FPDs) are modern video display devices that have several advantages over traditional Cathode Ray Tube (CRT) monitors. Unlike bulky CRTs, FPDs are sleek, energy-efficient, and highly portable.

Here’s why FPDs are preferred over CRTs:

  • Thinner & Space-Saving Design

    One of the biggest advantages of flat-panel displays is that they are extremely thin compared to CRTs, which have a large, bulky design.

    • Traditional CRTs require a deep cabinet to accommodate the electron gun and phosphor-coated screen.
    • Flat-panel displays use modern technology like liquid crystals (LCDs) or light-emitting diodes (LEDs) to display images, eliminating the need for a deep structure.
    • This thin profile allows FPDs to be:
      • Mounted on walls (like LED TVs).
      • Built into slim laptops and tablets.
      • Even worn on the wrist (as in smartwatches).

    Example: Flat-screen TVs can be hung on walls, whereas old CRT TVs needed bulky furniture to support them.

  • Lightweight & Portable

    Another major advantage is that flat-panel displays are lightweight, making them easy to move and transport.

    • CRT monitors contain heavy glass screens and metal components, making them difficult to lift and carry.
    • FPDs use lightweight materials like thin plastic layers, LED panels, and liquid crystal layers, significantly reducing weight.
    • Because of their low weight, FPDs can be easily integrated into portable devices like smartphones, tablets, and laptops.

    Example: A 32-inch CRT TV can weigh over 30 kg, while a 32-inch LED TV weighs less than 5 kg!

  • Low Power Consumption

    Flat-panel displays consume less power than CRTs, making them more energy-efficient and cost-effective in the long run.

    • CRTs require a lot of power to operate because they use electron beams to continuously refresh the image on the screen.
    • FPDs use modern technologies like LED backlighting and OLED pixels, which are designed to operate at lower power levels.
    • Since FPDs don’t require constant electron beam movement, they generate less heat and extend battery life in portable devices.

    Example:

    • A CRT monitor consumes around 75-100W of power, while a similar-sized LCD/LED screen only needs 20-40W.
    • This makes FPDs ideal for battery-powered devices like laptops, smartphones, and smartwatches.

Two Categories of Flat-Panel Displays: Emissive and Non-Emissive

  1. Emissive Displays: Directly emit light to create images
    • Emissive displays are also called "emitters" because they convert electrical energy into light to create images. These displays do not require an external light source; they generate their own illumination. examples: Plasma Display Panels, LEDs, OLEDs
  2. Non-Emissive Displays: Use external light sources and modify them to display images.
    • Non-emissive displays do not generate their own light. Instead, they modify an external light source (such as backlight or ambient light) to create an image. Example: LCDs.

Plasma Panel Display

  • Plasma Panel Displays, also called Gas-Discharge Displays, were an early type of flat-panel display used before LCDs and OLEDs became popular. The name "Plasma" comes from the fact that these displays use ionized gas (plasma) to produce light. Unlike traditional CRT screens that rely on an electron beam, plasma displays use tiny gas-filled cells that light up when electricity is applied.
  • A Plasma Panel Display is a self-emissive display that uses small gas-filled cells (pixels) to create an image. When an electric current passes through these cells, the gas inside (usually neon or xenon) gets ionized into plasma. This process emits light, which is used to form images on the screen.
  • Plasma panels do not need constant refreshing like CRTs because once a pixel is lit, it stays on until deliberately erased. This makes them flicker-free and stable.

Key Components of a Plasma Panel Display

  1. Cathode (Negative Electrode): The cathode is a set of fine wires arranged horizontally across the panel. These wires deliver a negative voltage to the gas cells, sending electrical signals to different parts of the screen. They work together with the anode to control which areas of the display light up.
  2. Anode (Positive Electrode): The anode consists of another set of wires, but these are arranged vertically and carry a positive voltage. When combined with the cathode wires, they form a grid-like structure, determining which gas cells are activated and producing the required image on the screen.
  3. Fluorescent Cells (Gas Pockets): These tiny pockets of neon or xenon gas are trapped between two glass plates. When voltage is applied, the gas ionizes into plasma and begins to glow. This emitted light is what creates the bright and vibrant visuals on the plasma display.
  4. Glass Plates: The plasma cells are enclosed between two glass plates, which act as capacitors to maintain the voltage across the display. These plates help ensure the screen stays illuminated properly and protect the internal components from external damage.

How Does a Plasma Panel Display Work?

  1. First, we have Grid Activation. Inside the plasma screen, there is a grid of cathode and anode wires. The cathode wires run horizontally, and the anode wires run vertically. Each point where these wires intersect represents a single pixel on the screen. When a voltage is applied to a particular intersection, it activates that specific pixel, determining which part of the screen lights up.
  2. Next comes the Ionization of Gas. Within each pixel, there are tiny cells filled with neon or xenon gas. When voltage is applied between a cathode and an anode, the gas inside that specific cell ionizes into plasma. This means the gas is now charged and ready to emit energy.
  3. Then, we have Light Emission. Once the gas is ionized, it emits ultraviolet (UV) light. However, UV light is invisible to our eyes, so each plasma cell is coated with fluorescent phosphors. These phosphors react to UV light and glow in one of three colors—Red, Green, or Blue (RGB). By combining these colors in different intensities, the display creates a full range of colors, producing clear and vibrant images.
  4. Now, unlike older CRT screens, plasma displays offer a Stable Display Without Refreshing. This means that once a pixel is lit, it stays illuminated as long as voltage is applied. CRT screens need constant refreshing to maintain an image, but plasma displays hold their image steady, reducing flicker and improving picture quality.
  5. Finally, there’s the Erasing & Updating the Screen. When an image needs to change, the voltage is lowered to around 90V, which stops the ionization process and turns off the pixel. Then, a new voltage pattern is applied to activate different pixels, creating the next frame of the image. This process happens extremely fast, allowing plasma displays to smoothly transition between images, making them perfect for high-quality visuals.

Advantages of Plasma Panel Displays

  • High Resolution: Plasma panels were capable of displaying sharp and detailed images with good clarity.
  • Large Screen Size Possible: Plasma technology allowed for bigger screens (up to 100 inches), making them popular for televisions and digital signage.
  • Less Volume & Weight: Compared to bulky CRTs, plasma displays were thinner and lighter, making them easier to mount on walls.
  • Flicker-Free Display: Since plasma displays do not require constant refreshing, the images remain stable without flickering, reducing eye strain.

Disadvantages of Plasma Panel Displays

  • Poor Resolution in Early Models: The first plasma panels had lower resolution compared to modern LCDs and OLEDs.
  • Complex Wiring & Addressing: Since each pixel requires a dedicated cathode and anode, plasma panels had a complex wiring system.
  • Difficult to Control Addressing: Controlling and updating specific pixels in plasma displays was technically challenging, making manufacturing more expensive.

Light Emitting Diode (LED) Display

  • LED displays are one of the most popular and widely used display technologies today. They are known for their bright visuals, energy efficiency, and long lifespan. The name "LED" (Light Emitting Diode) comes from the fact that these displays use small diodes that emit light when electricity is passed through them.
  • An LED display is a flat-panel display that uses light-emitting diodes (LEDs) as the source of light. Unlike older display technologies like CRT (Cathode Ray Tube) and Plasma, LED displays are:
    • Thinner
    • Brighter
    • More energy-efficient
  • LEDs are tiny semiconductor devices that emit light when an electric current passes through them. These LEDs can be arranged in a grid to form images, text, or videos.
  • Even though we call them "LED displays," many LED TVs today are actually LCD displays with LED backlighting rather than pure LED panels.

How Does an LED Display Work?

  • An LED Display creates images using tiny Light Emitting Diodes (LEDs) that produce bright, colorful visuals.
  • First, there’s Electric Current Activation . A small voltage is applied to each LED in the display. This voltage excites the electrons inside the LED material, causing them to move to a higher energy state. This is the first step in generating light.
  • Next comes Light Emission . Once the excited electrons return to their original energy state, they release photons (light energy). The color of this emitted light depends on the material used in the LED. For example, some LEDs emit Red, Green, or Blue (RGB) light, which are the primary colors used to create images on the screen.
  • Then, we have Brightness & Color Control . The intensity of light from each LED is controlled by adjusting the amount of electric current passing through it. By carefully controlling the brightness of individual Red, Green, and Blue LEDs, the display can produce millions of colors, creating a smooth and realistic image.
  • Finally, the LEDs work together for Image Formation . LEDs are arranged in a pixel grid, and each pixel is made up of three tiny LEDs—one Red, one Green, and one Blue (called sub-pixels). By adjusting the brightness levels of these sub-pixels, the screen can display a wide range of colors, forming clear and vibrant images.

Advantages of LED Displays

  • High Brightness & Contrast: LED displays are brighter than LCDs and visible even in daylight.
  • Energy Efficient: LEDs consume less power compared to older display technologies like CRT and Plasma.
  • Slim & Lightweight: LED displays are thinner and lighter, making them ideal for wall-mounted TVs and portable devices.
  • Long Lifespan: LEDs can last 50,000+ hours, much longer than traditional fluorescent backlights.
  • No Flickering, Less Eye Strain: Since LEDs refresh faster and do not flicker, they reduce eye strain and provide a smoother viewing experience.
  • Environmentally Friendly: LEDs do not contain harmful mercury (unlike old CRTs and CCFL backlights).

Disadvantages of LED Displays

  • Higher Cost: Pure LED panels (like OLED & MicroLED) are expensive compared to LCDs.
  • Viewing Angle Issues (for some models): Some LED-backlit LCDs have limited viewing angles, making colors look distorted from the sides.
  • Backlight Bleeding (for LED-backlit LCDs): In LED-backlit LCDs, some light leaks around the edges, reducing contrast.
  • Shorter Lifespan for Certain Colors: Blue LEDs tend to degrade faster, leading to color shifts over time.

Where Are LED Displays Used?

  • TVs & Monitors – LED-backlit LCDs are used in most modern televisions and computer screens.
  • Smartphones & Tablets – Most phones today use LED-backlit LCDs or OLED screens.
  • Outdoor Billboards – Large LED panels are used for advertising displays.
  • Traffic Lights & Signboards – LEDs are used in traffic signals and digital road signs.
  • Theater & Stage Displays – Concerts and events use large LED video walls.
  • Wearable Devices – Smartwatches and fitness trackers often use OLED (a type of LED display).

Liquid Crystal Display (LCD)

  • LCD (Liquid Crystal Display) is one of the most common display technologies used in devices like televisions, computer monitors, smartphones, and more. It's known for its thin profile, good image quality, and energy efficiency. However, unlike LED displays, LCDs don’t emit their own light—they rely on a backlight to illuminate the display.
  • An LCD (Liquid Crystal Display) uses liquid crystals to form images. These liquid crystals don't emit light directly, but instead, they manipulate light from a backlight source to produce images.
  • The LCD screen’s "liquid crystal" doesn't mean it’s a liquid like water; it’s a special substance that has properties of both liquids and solids, allowing it to adjust its transparency when electricity is applied.

How Does It Work?

  • An LCD Display works by manipulating light to create vibrant images.
  • First, there’s the Backlight. To get the display to shine, an LED or fluorescent light is used to shine through the LCD panel. This provides the necessary light for the display to work, as the liquid crystals themselves don’t emit light.
  • Next, we have Liquid Crystals. These are special materials that can manipulate light when an electric current is applied. When voltage is passed through them, the liquid crystals change their alignment, controlling how light passes through them and allowing the display to produce different shades.
  • Finally, there are Color Filters. The LCD uses filters to create the three primary colors—Red, Green, and Blue—by manipulating the light passing through the liquid crystals. These colors mix in different intensities to create a full spectrum of colors and form the image we see on the screen.
  • And that’s how it works—using a backlight, liquid crystals, and color filters to produce images with vibrant colors and sharp detail!

Advantages of LCD Displays

  • Thin and Lightweight: LCDs are thinner and lighter compared to older CRTs, making them easier to mount on walls or fit into compact spaces.
  • Energy Efficient: LCDs are much more energy-efficient compared to older display technologies like CRT and Plasma.
  • High Brightness: Bright visuals, making them ideal for use in well-lit environments or even outdoors.
  • No Flickering: Stable image with no flicker, which reduces eye strain during prolonged usage.
  • Good Color Accuracy: With modern advancements, LCDs now offer excellent color reproduction.
  • Long Lifespan: Long-lasting displays that can function well for 50,000 hours or more.

Disadvantages of LCD Displays

  • Limited Viewing Angles: Color distortion can occur when viewed from an angle, especially with older or cheaper LCDs. This is improved in IPS (In-Plane Switching) displays.
  • Lower Contrast Ratios: Compared to OLED and plasma displays, LCDs generally have lower contrast ratios, which means blacks can appear greyish instead of deep black.
  • Backlight Bleeding: Some LCDs (especially cheaper models) can have backlight bleed, where light leaks around the edges or corners, affecting picture quality.
  • Slower Response Times: Faster-moving images (like sports or action scenes) may appear blurry on TN displays with slower response times.

Applications of LCD Displays

  • Televisions & Monitors: LCD TVs are very common for home entertainment.
  • Smartphones & Tablets: Most smartphones use IPS LCDs for vibrant color and good viewing angles.
  • Laptop Screens: Thin and lightweight, making them perfect for portable computers.
  • Digital Watches & Clocks: Low power consumption and simple designs make LCD ideal for portable, battery-operated devices.
  • Automotive Displays: LCDs are used in dashboard screens and in-car navigation.

Input Devices

Input devices are the tools that allow us to interact with the computer and provide it with data. These devices help transfer data in various forms like text, graphics, sound, and more from the user to the machine.

  1. Keyboard – The Essential Typing Tool

    What is it?

    The keyboard is a classic input device used for typing text, numbers, and commands. It remains a core component of computer setups in 2025.

    How does it work?

    Each key is connected to a switch that sends a signal to the computer when pressed. There are mechanical keyboards, membrane keyboards, and virtual keyboards for mobile devices.

    Where is it used?

    • Office work – Typing emails, documents, and spreadsheets.
    • Programming – Essential for coding and development.
    • Gaming – Many games use keyboards for controls.
  2. Mouse – The Pointer Tool

    What is it?

    The mouse is still one of the most commonly used input devices to control the cursor on the screen.

    How does it work?

    It uses either optical or laser sensors to detect movement and translate it to the computer screen.

    Where is it used?

    • Navigation – Clicking on icons, scrolling web pages, and managing files.
    • Gaming – For aiming and controlling characters.
    • Design – Graphic designers, 3D modelers, and digital artists rely on it for precise control.
  3. Touch Panels/Touchscreens – Direct Interaction with Devices

    What is it?

    Touchscreens allow users to interact with the device directly by tapping, swiping, or pinching on the screen. It’s one of the most intuitive forms of input.

    How does it work?

    Touchscreens use capacitive or resistive technology to detect touch. Capacitive screens detect the electrical charge from fingers, while resistive screens register pressure.

    Where is it used?

    • Smartphones and tablets – The main interaction method for mobile devices.
    • POS Systems – In retail and self-checkout stations.
    • Laptops and desktops – Many have touch-sensitive screens for additional control options.
  4. Voice Recognition – Speak to Your Computer

    What is it?

    Voice recognition allows computers to understand and respond to spoken commands. In 2025, this technology is increasingly common for hands-free control and accessibility.

    How does it work?

    It converts audio signals into text or commands using speech-to-text software and algorithms.

    Where is it used?

    • Virtual assistants – Siri, Google Assistant, and Alexa.
    • Voice typing – Dictating documents or composing emails.
    • Smart home devices – Voice control of lights, thermostats, and more.
  5. Image Scanner – Digitizing Physical Images

    What is it?

    An image scanner converts physical documents, photos, or artwork into digital files.

    How does it work?

    The scanner uses a light sensor to scan the document pixel by pixel and convert it into a digital image or text.

    Where is it used?

    • Document management – Digitizing paper documents for easier storage and access.
    • Photography – Scanning old photos or artwork into digital formats.
    • Healthcare – Scanning medical images like X-rays for digital use.
  6. Digital Pen/Stylus – For Drawing & Signing

    What is it?

    A digital pen or stylus is used for precise input, such as drawing on a tablet or taking handwritten notes on a digital screen.

    How does it work?

    A stylus uses pressure sensors to detect motion on a surface and translate it into digital form.

    Where is it used?

    • Digital art and design – Artists use it for drawing, painting, and editing.
    • Note-taking – Tablets like the iPad and Microsoft Surface use digital pens for writing.
    • Signature capture – Signing documents on digital devices in business or legal contexts.
  7. Trackpad – Alternative to Mouse for Laptops

    What is it?

    A trackpad (also known as a touchpad) is built into laptops and serves as an alternative to a mouse. It uses multi-touch gestures to control the cursor.

    How does it work?

    The trackpad detects finger movement and taps to perform tasks like scrolling, clicking, and zooming.

    Where is it used?

    • Laptops – The primary input method for many laptops.
    • Portable devices – Tablets and compact laptops with touch interfaces.
  8. Joystick – For Interactive Gaming

    What is it?

    The joystick is commonly used for gaming and interactive simulations. It is an essential tool for controlling movement in games, especially flight and driving simulators.

    How does it work?

    A joystick has a stick that moves along X and Y axes and can also have buttons for extra functions like shooting or activating features.

    Where is it used?

    • Gaming – For flight simulations, racing games, and action games.
    • Virtual simulations – For training purposes in industries like aviation or military.

Output Devices

Printers

                    
Classification of Printers
   ├── Impact
   │   ├── Character
   │   │   ├── Dot Matrix
   │   │   ├── Daisy Wheel
   │   ├── Line
   │       ├── Drum Printer
   │       ├── Chain Printer
   ├── Non-Impact
       ├── Inkjet
       ├── Laser
                    
                

If you’ve ever used a printer, you might have noticed that some are noisier than others, some print faster, and some produce crisp, high-quality prints while others seem a bit rough. That’s because printers come in different types based on how they work. They are broadly classified into Impact Printers and Non-Impact Printers. Let’s break them down in a simple way.

Impact Printers – The Old-School Workhorses

Impact printers are like typewriters—they print by physically striking an ink ribbon against the paper to produce text or images. These printers are rugged and durable, making them great for environments where printing needs to be continuous, like bill printing in shops or bank statements.

  • Impact Printers are further divided into:
    • Character Printers
    • Line Printers
  • Character Printers – The Old-School Text Machines
    • Character printers are a type of impact printer that print one character at a time.
    • Think of them like an old typewriter—they physically strike an ink ribbon against the paper to produce letters and symbols.
    • While they might seem outdated today, they were once widely used in offices and industries for document printing.
    • Since these printers work character by character, they are slower compared to modern printers but were still considered efficient for their time.
    • They were mostly used in environments where text-based printing was the main requirement, and fancy graphics or high-speed printing weren’t needed.
    • Character printers are further divided into two main types:
      • Dot Matrix Printer
      • Daisy Wheel Printer
  • Dot Matrix Printer – The Workhorse of the Past
    • How Does It Work?
      • Dot matrix printers are one of the most recognizable types of impact printers.
      • If you’ve ever seen those noisy, old-style receipt or invoice printers in a shop, you’ve probably come across a dot matrix printer.
      • A dot matrix printer has a print head with tiny pins arranged in a grid (often 9-pin or 24-pin).
      • These pins strike against an ink ribbon to form characters or images using a series of dots.
      • The more pins a printer has, the better the print quality.
      • For example:
        • A 9-pin dot matrix printer produces basic, rough characters.
        • A 24-pin version offers better clarity and can even print simple graphics.
      • Since these printers rely on a mechanical impact, they are loud and slow, but they have one major advantage—they can print multiple copies at once using carbon paper (which is why they are still used for receipts and invoices).
    • Advantages of Dot Matrix Printers
      • Can Print Carbon Copies: Unlike inkjet or laser printers, a dot matrix printer can print duplicate copies using multi-layered carbon paper in a single print job.
      • Low Operating Cost: The ink ribbons used in dot matrix printers are cheaper compared to inkjet or toner cartridges.
      • Durable and Reliable: These printers are rugged and can work in harsh environments like dusty warehouses and factories.
      • Continuous Paper Printing: They can print on continuous sheets of perforated paper (like old-school computer printouts), making them ideal for logs and reports.
    • Disadvantages of Dot Matrix Printers
      • Noisy Operation: Since the print head physically strikes the ribbon and paper, these printers make a loud clicking noise during printing.
      • Slow Printing Speed: Because they print character by character, dot matrix printers are significantly slower than modern printers.
      • Poor Print Quality: The characters and images are made up of small dots, so they look rough and pixelated compared to laser or inkjet prints.
      • Limited Font Options: Dot matrix printers have fixed character sets, so they can’t print fancy fonts or high-resolution graphics.
    • Common Uses of Dot Matrix Printers
      • Retail and Billing: Many shops and supermarkets still use dot matrix printers to generate receipts.
      • Banks and Financial Institutions: Used for printing passbooks, transaction logs, and statements.
      • Factories and Warehouses: Since these printers can withstand dusty and rough conditions, they are still used for printing logs, orders, and shipping labels.
      • Railway and Bus Ticketing: Many older railway and bus systems still use dot matrix printers for printing tickets.
  • Daisy Wheel Printer – The Typewriter’s Digital Cousin
    • How Does It Work?
      • Daisy wheel printers are another type of character printer, but unlike dot matrix printers, they produce sharper and more professional-looking text.
      • They were commonly used in offices before laser and inkjet printers took over.
      • A daisy wheel printer has a circular disk (the "daisy wheel") with characters pre-formed on the edges.
      • When you print something, the wheel rotates to the correct character, and a hammer strikes it against the ribbon and paper.
      • This is similar to how a typewriter works, except it’s automated.
      • Because each character is pre-formed, daisy wheel printers produce sharper text than dot matrix printers.
      • However, they are still slow because they print one character at a time.
      • They also cannot print images or graphics—only text.
    • Advantages of Daisy Wheel Printers
      • High Print Quality: Since the characters are pre-formed, the print quality is much sharper than dot matrix printers.
      • More Professional Output: Daisy wheel printers were widely used in offices and legal documentation because of their clear, typewriter-like text.
      • Less Maintenance: Since the characters are pre-made on the wheel, there are no pins to get damaged like in dot matrix printers.
    • Disadvantages of Daisy Wheel Printers
      • Very Slow: Since they print one character at a time, daisy wheel printers are extremely slow compared to modern printers.
      • No Graphics or Images: Unlike dot matrix printers, which can print simple graphics, daisy wheel printers only print text.
      • Expensive Ribbons and Wheels: The ribbons and replacement daisy wheels were costly, making them less economical in the long run.
      • Noisy Operation: Just like typewriters, these printers made a loud mechanical sound with each character printed.
    • Common Uses of Daisy Wheel Printers
      • Official Documents: Before laser printers became common, these were used for printing legal documents, office letters, and contracts.
      • Typewriter Replacement: Many businesses replaced manual typewriters with daisy wheel printers for automated document creation.
      • Academic and Research Papers: Used in universities and offices for formal documentation.
  • Line Printers – The Speedy Text Machines
    • Line printers are a type of impact printer that print an entire line of text at once, unlike character printers, which print one character at a time.
    • This feature makes them much faster than character printers.
    • Line printers were commonly used in environments where high-volume printing was needed, such as in large corporations, data centers, and financial institutions.
    • While their print quality isn't as high as modern printers, they are fast, reliable, and perfect for printing large batches of data.
    • How Do Line Printers Work?
      • Instead of printing characters individually, line printers use a mechanism that allows them to print an entire line in one go.
      • There are two common types of line printers:
        • Drum Printers
        • Chain Printers
      • Both of these line printers use a mechanical method to strike an ink ribbon against the paper, printing one line at a time.
      • The key difference lies in how they generate the text on the paper.
  • Drum Printer – The Heavy-Duty Workhorse
    • How Does It Work?
      • Drum printers have a rotating drum that contains pre-etched characters (think of a circular band with rows of letters).
      • As the drum spins, the paper moves beneath it, and hammers strike the paper, creating the text.
      • The drum’s rotation allows the printer to print an entire line at once, making it much faster than character printers.
    • Advantages of Drum Printers
      • Fast Printing: Drum printers can print a whole line at a time, making them much faster than character printers.
      • Durable: They are built to handle high-volume printing over long periods, which makes them a good choice for large companies.
      • Low Maintenance: Since there are no small pins to wear out (like in dot matrix printers), drum printers generally require less maintenance.
      • Good for Long Continuous Prints: They work well for printing reports, logs, and invoices that need continuous output.
    • Disadvantages of Drum Printers
      • Limited to Pre-etched Characters: Drum printers are limited to the characters etched on the drum, so custom fonts or styles are impossible without changing the drum.
      • Noisy: Like all impact printers, drum printers are noisy due to the mechanical hammers.
      • Bulky and Heavy: These printers are often large and heavy, making them difficult to move or place in a small office.
      • Limited Graphics Support: Drum printers are designed for text and cannot print high-quality images or complex graphics.
    • Common Uses of Drum Printers
      • Large-Scale Business Printing: Drum printers were widely used for printing payroll in companies, financial reports, and statements that needed to be produced quickly.
      • Data Centers: They were used in environments where logs and data sets needed to be printed continuously.
      • Banking and Finance: Drum printers were popular in banks for printing accounting records and transaction logs.
  • Chain Printer – The Faster and More Flexible Option
    • How Does It Work?
      • Chain printers use a rotating chain of pre-formed characters, much like a drum printer, but instead of a drum, the characters are on a moving chain.
      • The chain passes over a print head, which strikes the paper and prints the entire line at once.
    • Advantages of Chain Printers
      • Faster Than Drum Printers: Chain printers tend to be faster than drum printers due to the continuous movement of the chain and the ability to adjust the character set.
      • Flexible Character Sets: Chain printers allow for the replacement of the character chain, so you can use different fonts or change the characters printed.
      • Durability and Reliability: These printers are designed to handle heavy workloads and can print for long hours without much wear and tear.
      • High-Speed Printing: As with drum printers, chain printers can print an entire line of text at once, making them ideal for large printing jobs.
    • Disadvantages of Chain Printers
      • Expensive Maintenance: While chain printers are more flexible than drum printers, they can be expensive to maintain, especially if the chains need frequent replacement.
      • Still Noisy: Chain printers, like other impact printers, are quite loud due to the hammering mechanism.
      • Limited Graphics Support: Like drum printers, they are not designed for printing high-quality images and are best used for text-based printing.
      • Bulky: They are also large and heavy, taking up more space in an office environment compared to modern printers.
    • Common Uses of Chain Printers
      • High-Volume Data Printing: These printers were ideal for printing bulk data like monthly reports, financial statements, and logs.
      • Large Businesses: In industries such as banking, insurance, and telecommunications, chain printers were used to print customer records, billing statements, and other documents that required fast and reliable printing.
      • Data Centers and Warehouses: Like drum printers, chain printers were used in environments that required continuous output, such as printing large volumes of data for analysis or processing.

Non-Impact Printers – The Quiet and Modern Machines

    • Non-impact printers are the modern type of printers that do not physically strike the paper while printing.
    • Unlike impact printers (character and line printers) that use mechanical force to transfer ink, non-impact printers spray ink or use heat and laser technology to create text and images.
    • These printers are quieter, faster, and can print both text and images with high quality.
    • They have completely replaced impact printers in most offices, homes, and industries because they offer better print quality, support for graphics, and various printing materials.
    • Types of Non-Impact Printers:
      • Inkjet Printers – The Common Home & Office Printer
      • Laser Printers – The High-Speed & Sharp Print Machines
  • Inkjet Printers – The Budget-Friendly All-Rounder
    • Inkjet printers are the most common type of printers found in homes and offices.
    • They work by spraying tiny droplets of liquid ink onto the paper to create text and images.
    • The ink is stored in cartridges and can be either black or colored, allowing inkjet printers to print in full color as well.
    • How Do Inkjet Printers Work?
      • An inkjet printer has small nozzles that spray ink onto the paper.
      • The nozzles are controlled electronically to form letters, shapes, and images with precision.
      • There are two main techniques used in inkjet printing:
        • Thermal Bubble (Bubble Jet) Technology: Uses heat to create small ink bubbles that burst and release ink onto the paper.
        • Piezoelectric Technology: Uses electric charges to control ink flow and spray droplets with high accuracy.
    • Advantages of Inkjet Printers
      • Affordable and Widely Available: Inkjet printers are usually cheaper than laser printers, making them ideal for homes and small businesses.
      • High-Quality Color Printing: They can print vibrant colors and detailed images, making them great for photos and presentations.
      • Compact Size: Most inkjet printers are small and lightweight, so they don’t take up much space.
      • Can Print on Various Paper Types: Inkjet printers can print on glossy paper, photo paper, and even fabric.
    • Disadvantages of Inkjet Printers
      • Ink is Expensive: Ink cartridges can be costly, and they run out quickly, increasing the long-term cost of use.
      • Slow Printing Speed: Compared to laser printers, inkjet printers are slower, especially when printing large volumes.
      • Ink Smudging & Water Sensitivity: The ink can smudge if touched immediately after printing, and water can ruin prints.
      • Requires Frequent Maintenance: Ink cartridges can dry out if not used regularly, leading to clogged nozzles and poor print quality.
    • Common Uses of Inkjet Printers
      • Home & Small Office Printing: Used for documents, school assignments, and general printing needs.
      • Photo Printing: Many inkjet printers support photo-quality printing.
      • Creative Projects & Arts: Great for crafts, invitations, and customized prints.
  • Laser Printers – The Speed & Precision Master
    • Laser printers are faster, sharper, and more cost-effective for bulk printing.
    • Instead of spraying ink, they use laser beams and toner (powdered ink) to produce high-quality text and images.
    • These printers are commonly found in offices, businesses, and industries where fast and professional printing is needed.
    • How Do Laser Printers Work?
      • Laser printers work using electrostatic charge and heat to transfer toner (a fine powder) onto paper.
      • Here’s the process:
        • A laser beam creates a pattern (your text or image) on a drum inside the printer.
        • The drum is coated with toner powder, which sticks to the charged areas.
        • The toner is then transferred onto the paper.
        • Finally, the paper passes through a heated roller (fuser unit), which melts and fuses the toner onto the paper permanently.
    • Advantages of Laser Printers
      • Super Fast Printing: Laser printers can print dozens of pages per minute, making them great for offices.
      • Sharp and Smudge-Free Prints: Since toner is a dry powder, the prints don’t smudge and look crisp and professional.
      • Lower Cost for Large Printing Jobs: While the upfront cost of a laser printer is high, the toner lasts longer than ink cartridges, making it cheaper in the long run.
      • Durable & Low Maintenance: Laser printers don’t have clogging issues like inkjet printers, and they require less frequent maintenance.
    • Disadvantages of Laser Printers
      • Expensive Initial Cost: A laser printer costs more than an inkjet printer, especially color laser printers.
      • Bulkier & Heavier: Most laser printers are large and heavy, taking up more space in offices.
      • Limited Paper Compatibility: Unlike inkjets, laser printers don’t print well on glossy or specialty papers.
      • Not Ideal for High-Quality Photo Printing: Laser printers are better for text-based printing, and photo printing quality is lower compared to inkjets.
    • Common Uses of Laser Printers
      • Offices & Businesses: Used for printing reports, invoices, and bulk documents.
      • Educational Institutes & Libraries: Used for assignments, research papers, and administrative printing.
      • Government & Corporate Printing: Used for legal documents, bank statements, and official records.

Plotters

  • A plotter is a specialized printing device used for large-scale, high-precision graphics such as architectural blueprints, engineering drawings, circuit diagrams, and banners. Unlike traditional printers, which print by spraying ink or using toner, plotters use pens, inkjet heads, or cutting blades to create smooth, continuous lines.
  • Plotters are mainly used in industries where accuracy and detail are critical, such as engineering, architecture, graphic design, and manufacturing. They can handle larger paper sizes (A0, A1, A2) and even materials like vinyl, fabric, and plastic sheets.
  • How Do Plotters Work?: Unlike regular printers that print pixel-by-pixel, plotters use mechanical arms or moving printheads to draw precise lines on a surface. This allows them to create extremely detailed and accurate drawings. Plotters can either use pens for traditional drawing, inkjets for high-resolution color graphics, or blades for cutting designs.

Types of Plotters:

  1. Drum Plotter – The Rotating Precision Machine
    • A drum plotter has a rotating drum that moves the paper while the pen moves side-to-side to create drawings.
    • The paper is wrapped around the drum, and as the drum rotates, the pen moves according to the programmed design.
    • Used For:
      • Engineering & Architectural Drawings – Ideal for large-scale blueprints.
      • Banner & Sign Making – Prints on long rolls of paper.
      • Geographical Mapping – Creates detailed land survey maps.
    • Great for producing long, continuous prints with high precision.
    • However, it's slower than modern inkjet plotters and requires special paper rolls.
  2. Flatbed Plotter – The Blueprint Specialist
    • A flatbed plotter has a fixed, flat surface where the paper (or other material) is placed.
    • The pens move in both horizontal (X-axis) and vertical (Y-axis) directions to draw the design.
    • Unlike a drum plotter, the paper does not move, making it more stable for detailed and delicate drawings.
    • Used For:
      • Architectural & CAD Drawings – Common in architecture and construction industries.
      • PCB (Printed Circuit Board) Design – Used in electronics for precise circuit layouts.
      • Artwork & Calligraphy – Helps in detailed artistic sketches.
    • Perfect for precise, detailed drawings on a stable surface.
    • It can even print on rigid materials like plastic and metal sheets.
    • However, it takes up more space and is slower for very large designs.
  3. Inkjet Plotter – The High-Resolution Graphics Printer
    • An inkjet plotter works like a regular inkjet printer but on a much larger scale.
    • Instead of using pens, it sprays tiny droplets of ink to create detailed images, posters, and banners.
    • Used For:
      • Graphic Design & Advertising – Creates posters, billboards, and banners.
      • Photography & Art Reproduction – Produces high-quality prints for artwork.
      • Retail & Marketing – Prints store signs and promotional materials.
    • Best for full-color, high-resolution graphics and widely used in advertising and photography.
    • However, it requires expensive ink and is not as precise for technical drawings.
  4. Cutting Plotter – The Sticker & Vinyl Cutter
    • A cutting plotter does not use pens or ink but instead has a blade that cuts designs out of materials like vinyl, paper, plastic, and fabric.
    • Used For:
      • Sign Making & Branding – Cuts out logos, decals, and store signs.
      • Vinyl Wrapping & Sticker Production – Used for making custom stickers.
      • Fashion & Textile Industry – Cuts fabric patterns for clothing production.
    • Perfect for making customized shapes and designs.
    • It's widely used in branding and textile industries.
    • However, it does not print colors—only cuts materials into shapes.

Advantages & Disadvantages of Plotters

  • Advantages:
    • Extremely High Precision – Ideal for technical and engineering drawings.
    • Large-Format Printing – Produces blueprints, banners, and posters without losing quality.
    • Versatile Material Support – Works with paper, plastic sheets, fabric, and vinyl.
  • Disadvantages:
    • Expensive – Plotters cost more than regular printers.
    • Slower Speed – Producing detailed drawings takes time.
    • Requires Specialized Software – Needs CAD software or graphic design tools for operation.

Difference between Plotter and Printer :

Digital Image Representation and Rendering Techniques

Understanding Digital Images

Before we dive into the techniques, let’s first understand what a digital image is.

A digital image is basically a grid of tiny squares called pixels (short for “picture elements”). Each pixel contains color information, and when you zoom in, you can see that the image is made up of these little blocks.

There are two main ways to represent images:

Now that we know what digital images are, let’s talk about some common issues and techniques used to improve how images look on screens and in prints.

  1. Dithering – Faking More Colors with Patterns

    Problem: What if a device or printer can only display a limited number of colors, but we need more? That’s where dithering comes in.

    What is Dithering?

    Dithering is a technique that creates the illusion of more colors by placing tiny dots of different colors next to each other. When viewed from a distance, our eyes mix these dots and perceive a new color that isn’t actually there!

    Example:

    Imagine you only have black and white dots but want to display gray. Instead of a solid gray pixel, the system places black and white dots close together. When you step back, it looks like a shade of gray.

    Where is Dithering Used?

    • Old video games (which had limited color palettes).
    • Low-color displays (like early computer monitors).
    • Printing (especially in newspapers and comics).

    Benefit: Makes images look better when the color range is limited.

    Drawback: Can create a grainy or noisy effect.

  2. Half-toning – The Trick Behind Newspaper Images

    Problem: How do printers create images using only black ink?

    What is Half-toning?

    Half-toning is a special form of dithering used in printing. Instead of solid colors, images are made up of tiny dots of different sizes and spacing. Large dots form darker areas, while smaller dots form lighter areas.

    Example:

    Pick up a newspaper and look at a photo closely—you’ll notice it’s actually made of tiny dots!

    Where is Half-toning Used?

    • Newspapers & Magazines (since they use limited ink colors).
    • Black-and-white printing (to create shades of gray).

    Benefit: Allows printers to create detailed images using just one ink color.

    Drawback: Loses detail compared to full-color images.

Image Rendering & Display Techniques

These techniques are used to improve image quality and make things look smoother on digital screens.

  1. Aliasing – Why Do Some Images Look Blocky?

    The Problem:

    Ever notice how diagonal lines or curves sometimes look blocky, almost like a staircase made of tiny squares, instead of smooth? That's a common issue!

    The Cause:

    This happens because the individual pixels are square-shaped. When trying to show a diagonal or curved shape, it doesn’t line up perfectly with the pixel grid, and as a result, the edges look rough or pixelated.

    So, aliasing is basically: The visual effect where smooth lines or curves appear jagged or blocky due to the limitations of pixel grids. It happens because pixels can’t perfectly represent diagonal or curved shapes.

    Examples:

    • Old video games (characters and objects had sharp, blocky edges).
    • Low-resolution screens (text and images appeared rough or blurry).
    • Early 3D graphics (3D models without smoothing techniques looked rough).

    Disadvantage: This makes images and text look unnatural and rough, which can be distracting.

  2. Anti-aliasing – The Fix for Blocky Edges

    The Solution:

    Anti-aliasing is like a magic trick for smoothness! It works by blending the rough edges with intermediate shades, which creates a smoother, more natural transition between colors and shapes.

    So, anti-aliasing is basically: A technique that smooths out the blocky or rough edges caused by aliasing. It works by adding extra pixels of intermediate colors along the edges to make the transition look smoother and more natural.

    Examples:

    • Modern video games (anti-aliasing helps make graphics look smooth and lifelike).
    • Text rendering (anti-aliasing makes text clearer and easier to read on screens).
    • 3D animation & modeling (helps eliminate rough edges in animated movies).

    Advantage: It makes graphics and text look smoother and much more realistic!

    Disadvantage: It requires more processing power, which can slow things down in real-time applications, like video games or live graphics.

Reference