GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Convert::Color::CMY(3) User Contributed Perl Documentation Convert::Color::CMY(3)

"Convert::Color::CMY" - a color value represented as cyan/magenta/yellow

Directly:

 use Convert::Color::CMY;

 my $red = Convert::Color::CMY->new( 0, 1, 1 );

 # Can also parse strings
 my $pink = Convert::Color::CMY->new( '0,0.3,0.3' );

Via Convert::Color:

 use Convert::Color;

 my $cyan = Convert::Color->new( 'cmy:1,0,0' );

Objects in this class represent a color in CMY space, as a set of three floating-point values in the range 0 to 1.

Returns a new object to represent the set of values given. These values should be floating-point numbers between 0 and 1. Values outside of this range will be clamped.

Parses $string for values, and construct a new object similar to the above three-argument form. The string should be in the form

 cyan,magenta,yellow

containing the three floating-point values in decimal notation.

Accessors for the three components of the color.

Returns the individual cyan, magenta and yellow color components of the color value.

  • Convert::Color - color space conversions
  • Convert::Color::RGB - a color value represented as red/green/blue
  • Convert::Color::CMYK - a color value represented as cyan/magenta/yellow/key

Paul Evans <leonerd@leonerd.org.uk>
2014-06-01 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.