Sometimes it is needed this program for color interpretation.

Always i get an error in interpreting color. I'm change the label color ex: "red" color code,

but program not display "red" color ex. display "blue" color !!!

This is best solution.There is my advenced code;

# Author : KuNdUz # 10.02.2011 - 13:35 use strict; use warnings; use Win32::GUI; use Number::RGB; my $Win = new Win32::GUI::Window( -left => 341, -top => 218, -width => 300, -height => 131, -name => "Win", -text => "->GetPixel Advanced" ); $Win->Show(); my $font = new Win32::GUI::Font( -bold => 1, -size => 18, ); $Win->AddLabel( -name => "Label_1", -left => 0, -top => 0, -width => 300, -font => $font, -height => 130, ); my $screen = new Win32::GUI::DC("DISPLAY"); my $timdre1 = $Win->AddTimer('tim',100); sub tim_Timer { my ($x,$y) = Win32::GUI::GetCursorPos(); my $color = $screen->GetPixel($x,$y); my $kaka = sprintf ("%06X\n", $color); # print "html : $kaka\n"; my $green = Number::RGB->new(hex => '#'.$kaka); # print "rgb : $green\n"; my $last = $color; if($color eq $last){} $green =~ /(.+),(.+),(.+)/; $Win->Label_1->Change(-text => "Html Hex : $kaka\nRGB Hex : $green", - +background => [$1,$2,$3]); } Win32::GUI::Dialog(); sub Win_Terminate { return -1; } 1; 1; # Author : KuNdUz

In reply to Re: The power of Perl and Win32::GUI by Anonymous Monk
in thread The power of Perl and Win32::GUI by TROGDOR

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.