Sha256: d41916c312114945282bf96f7fde842267c14fbcbe5f077221ac3e7567fb46b9

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

#--
# Colour management with Ruby.
#
# Copyright 2005 Austin Ziegler
#   http://rubyforge.org/ruby-pdf/
#
#   Licensed under a MIT-style licence.
#
# $Id: yiq.rb,v 1.3 2005/08/08 02:44:17 austin Exp $
#++

  # A colour object representing YIQ (NTSC) colour encoding.
class Color::YIQ
    # Creates a YIQ colour object from fractional values 0 .. 1.
    #
    #   Color::YIQ.new(0.3, 0.2, 0.1)
  def self.from_fraction(y = 0, i = 0, q = 0)
    color = Color::YIQ.new
    color.y = y
    color.i = i
    color.q = q
    color
  end

    # Creates a YIQ colour object from percentages 0 .. 100.
    #
    #   Color::YIQ.new(10, 20, 30)
  def initialize(y = 0, i = 0, q = 0)
    @y = y / 100.0
    @i = i / 100.0
    @q = q / 100.0
  end

    # Compares the other colour to this one. The other colour will be
    # converted to YIQ before comparison, so the comparison between a YIQ
    # colour and a non-YIQ colour will be approximate and based on the other
    # colour's #to_yiq conversion. If there is no #to_yiq conversion, this
    # will raise an exception. This will report that two YIQ values are
    # equivalent if all component colours are within 1e-4 (0.0001) of each
    # other.
  def ==(other)
    other = other.to_yiq
    other.kind_of?(Color::YIQ) and
    ((@y - other.y).abs <= 1e-4) and
    ((@i - other.i).abs <= 1e-4) and
    ((@q - other.q).abs <= 1e-4) 
  end

  def to_yiq
    self
  end

  def brightness
    @y
  end
  def to_grayscale
    Color::GrayScale.new(@y)
  end
  alias to_greyscale to_grayscale

  attr_accessor :y, :i, :q
  remove_method :y=, :i=, :q=
  def y=(yy) #:nodoc:
    yy = 1.0 if yy > 1
    yy = 0.0 if yy < 0
    @y = yy
  end
  def i=(ii) #:nodoc:
    ii = 1.0 if ii > 1
    ii = 0.0 if ii < 0
    @i = ii
  end
  def q=(qq) #:nodoc:
    qq = 1.0 if qq > 1
    qq = 0.0 if qq < 0
    @q = qq
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
coloration-0.4.0 lib/coloration/color/yiq.rb
color-tools-1.3.0 lib/color/yiq.rb
pdf-labels-1.0.0 vendor/color/yiq.rb
pdf-labels-1.0.1 vendor/color/yiq.rb
pdf-labels-2.0.1 vendor/color/yiq.rb