Sponsored Content
Special Forums Hardware Electricity Savings for home lab Post 302571423 by Corona688 on Monday 7th of November 2011 10:23:32 AM
Old 11-07-2011
With the first snow we've gone from <20KWH a day to a sudden 100KWH/day Smilie And we're supposed to be well-insulated now! Gotta find the heat leak...
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

VMWare Workstation for home lab

I was wondering if anyone has used VMWare Workstation? I wanted to practice and learn Unix in a networking environment and have my own home lab. However room and money prevent me from buying several computers to do so. Any input would help thank you. (0 Replies)
Discussion started by: vedder191
0 Replies

2. Programming

Shell Script Lab

In the following Shell Script can anyone help me? What are the total scripts? What are the total binaries? What are the total files? #!/bin/sh GREP="/bin/grep -q" if ; then if ; then for | in ${I}/* ;do file ${I} | ${GREP} "executable" && echo "${I} is a binary" file ${I} |... (1 Reply)
Discussion started by: rktompsett
1 Replies

3. Shell Programming and Scripting

cant complete lab ???

heres the lab i did everything but when i issue the automated lab check. but it gives me this everytime ''you are missing the /home/smichaels/Labs/lab2b/group file, please create it as per step 12 of the lab. once you have corrected this problem, re-run the uli101.023 program'' im... (1 Reply)
Discussion started by: ink
1 Replies

4. Homework & Coursework Questions

Help completing lab.

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: ''you are missing the /home/smichaels/Labs/lab2b/group file, please create it as per step 12 of the lab. once... (4 Replies)
Discussion started by: ink
4 Replies

5. Shell Programming and Scripting

help me with lab im new to bash....

Write a script that copies the file tree (including subdirectories) in your home directory. As the initial directory to take the directory / usr / share / doc, as the destination directory using the directory $ {HOME} / doc. Write a script corresponding to paragraph 1. Additional conditions: a)... (1 Reply)
Discussion started by: elginmulizwa
1 Replies

6. AIX

Setup hacmp on lpar with a hmc for home lab

Unix Guys i want to setup a lab in my house for learning, i want to setup and hacmp and a seperate server where i can setup 2 lpars and then cluster those 2 lpars and setup them up for failover what is the cheapest way to achive this. my objective is to learn hmc -> managed server via... (7 Replies)
Discussion started by: asyed123
7 Replies

7. Homework & Coursework Questions

Processes Lab

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Here are my directions. I am pretty sure I am doing this right, but I just want someone more experienced to look... (4 Replies)
Discussion started by: Jagst3r21
4 Replies

8. Homework & Coursework Questions

Lab ^

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Filter a file for lines that have exactly 5 numbers in a row. 2. Relevant commands, code, scripts,... (13 Replies)
Discussion started by: herb bertz
13 Replies

9. AIX

Free test appication for HACMP home Lab

Hi Everyone, I'll be setting up a home lab for HACMP to play with it as much as I can and learn through out. I already have read old threads about it. My only concern is that I want to install an application on the nodes and then do a failover test to see if the application moves over. The... (4 Replies)
Discussion started by: uzair_rock
4 Replies
Imager::Color(3pm)					User Contributed Perl Documentation					Imager::Color(3pm)

NAME
Imager::Color - Color handling for Imager. SYNOPSIS
use Imager; $color = Imager::Color->new($red, $green, $blue); $color = Imager::Color->new($red, $green, $blue, $alpha); $color = Imager::Color->new("#C0C0FF"); # html color specification $color->set($red, $green, $blue); $color->set($red, $green, $blue, $alpha); $color->set("#C0C0FF"); # html color specification ($red, $green, $blue, $alpha) = $color->rgba(); @hsv = $color->hsv(); $color->info(); if ($color->equals(other=>$other_color)) { ... } DESCRIPTION
This module handles creating color objects used by Imager. The idea is that in the future this module will be able to handle color space calculations as well. An Imager color consists of up to four components, each in the range 0 to 255. Unfortunately the meaning of the components can change depending on the type of image you're dealing with: o for 3 or 4 channel images the color components are red, green, blue, alpha. o for 1 or 2 channel images the color components are gray, alpha, with the other two components ignored. An alpha value of zero is fully transparent, an alpha value of 255 is fully opaque. METHODS
new This creates a color object to pass to functions that need a color argument. set This changes an already defined color. Note that this does not affect any places where the color has been used previously. rgba() This returns the red, green, blue and alpha channels of the color the object contains. info Calling info merely dumps the relevant color to the log. equals(other=>$other_color) equals(other=>$other_color, ignore_alpha=>1) Compares $self and color $other_color returning true if the color components are the same. Compares all four channels unless "ignore_alpha" is set. If "ignore_alpha" is set only the first three channels are compared. You can specify colors in several different ways, you can just supply simple values: o simple numeric parameters - if you supply 3 or 4 numeric arguments, you get a color made up of those RGB (and possibly A) components. o a six hex digit web color, either "RRGGBB" or "#RRGGBB" o an eight hex digit web color, either "RRGGBBAA" or "#RRGGBBAA". o a 3 hex digit web color, "#RGB" - a value of F becomes 255. o a color name, from whichever of the gimp "Named_Colors" file or X "rgb.txt" is found first. The same as using the "name" keyword. You can supply named parameters: o 'red', 'green' and 'blue', optionally shortened to 'r', 'g' and 'b'. The color components in the range 0 to 255. # all of the following are equivalent my $c1 = Imager::Color->new(red=>100, blue=>255, green=>0); my $c2 = Imager::Color->new(r=>100, b=>255, g=>0); my $c3 = Imager::Color->new(r=>100, blue=>255, g=>0); o "hue", "saturation" and "value", optionally shortened to "h", "s" and "v", to specify a HSV color. 0 <= hue < 360, 0 <= s <= 1 and 0 <= v <= 1. # the same as RGB(127,255,127) my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5); my $c1 = Imager::Color->new(hue=>120, value=>1, saturation=>0.5); o "web", which can specify a 6 or 3 hex digit web color, in any of the forms "#RRGGBB", "#RGB", "RRGGBB" or "RGB". my $c1 = Imager::Color->new(web=>'#FFC0C0'); # pale red o "gray" or "grey" which specifies a single channel, from 0 to 255. # exactly the same my $c1 = Imager::Color->new(gray=>128); my $c1 = Imager::Color->new(grey=>128); o "rgb" which takes a 3 member arrayref, containing each of the red, green and blue values. # the same my $c1 = Imager::Color->new(rgb=>[255, 100, 0]); my $c1 = Imager::Color->new(r=>255, g=>100, b=>0); o "hsv" which takes a 3 member arrayref, containing each of hue, saturation and value. # the same my $c1 = Imager::Color->new(hsv=>[120, 0.5, 1]); my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5); o "gimp" which specifies a color from a GIMP palette file. You can specify the file name of the palette file with the 'palette' parameter, or let Imager::Color look in various places, typically "$HOME/gimp-1.x/palettes/Named_Colors" with and without the version number, and in "/usr/share/gimp/palettes/". The palette file must have color names. my $c1 = Imager::Color->new(gimp=>'snow'); my $c1 = Imager::Color->new(gimp=>'snow', palette=>'testimg/test_gimp_pal); o "xname" which specifies a color from an X11 "rgb.txt" file. You can specify the file name of the "rgb.txt" file with the "palette" parameter, or let Imager::Color look in various places, typically "/usr/lib/X11/rgb.txt". my $c1 = Imager::Color->new(xname=>'blue') # usually RGB(0, 0, 255) o "builtin" which specifies a color from the built-in color table in Imager::Color::Table. The colors in this module are the same as the default X11 "rgb.txt" file. my $c1 = Imager::Color->new(builtin=>'black') # always RGB(0, 0, 0) o "name" which specifies a name from either a GIMP palette, an X "rgb.txt" file or the built-in color table, whichever is found first. o 'channel0', 'channel1', etc, each of which specifies a single channel. These can be abbreviated to 'c0', 'c1' etc. o 'channels' which takes an arrayref of the channel values. Optionally you can add an alpha channel to a color with the 'alpha' or 'a' parameter. These color specifications can be used for both constructing new colors with the new() method and modifying existing colors with the set() method. METHODS
hsv() my($h, $s, $v, $alpha) = $color->hsv(); Returns the color as a Hue/Saturation/Value/Alpha tuple. AUTHOR
Arnar M. Hrafnkelsson, addi@umich.edu And a great deal of help from others - see the "README" for a complete list. SEE ALSO
Imager(3), Imager::Color http://imager.perl.org/ perl v5.14.2 2011-06-06 Imager::Color(3pm)
All times are GMT -4. The time now is 03:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy