|
|
Comments and Discussions
|
|
 |

|
Just downloaded on my Vista home premium system, works like a champ.
Mike - typical white guy
Thomas Mann - "Tolerance becomes a crime when applied to evil."
The NYT - my leftist brochure.
Calling an illegal alien an “undocumented immigrant” is like calling a drug dealer an “unlicensed pharmacist”.
God doesn't believe in atheists, therefore they don't exist.
|
|
|
|

|
Mike Gaskey wrote: Still the best
Thanks man. That means a lot.
Mike Gaskey wrote: works like a champ
I still haven't taken the Vista plunge, so that's good to know. Thanks.
|
|
|
|
|

|
renjith_sr wrote: dude, has 2.0 been released yet?
2.0 was scrapped, but I think I'll be making version 1.4 soon to add 64-bit support and a few goodies like a magnifying lens, etc.
|
|
|
|
|

|
equivocator99 wrote: "This applications has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem."
It has to do with the manifest file. I think MS may have changed some requirements for it. It works on some people's machines and worked on mine in the past until recently (zero changes on my part). I do have Windows Update, so that may come into consideration.
Nevertheless, I'll dig deeper into the issue, but in the meantime you can compile the source in something besides VS2005 or just drop the extra manifest file data from the project options to get it to run.
|
|
|
|

|
Seeing how you’re actively working on this app, why not add a Color picker to it, be great if it offered a simple CColorDialog to choose the color and let me specify the output, say hex, decimal or name.
I'd love to help, but unfortunatley I have prior commitments monitoring the length of my grass. :Andrew Bleakley:
|
|
|
|

|
S Douglas wrote: be great if it offered a simple CColorDialog to choose the color and let me specify the output, say hex, decimal or name.
A standard color dialog allows you to specify RGB values to choose a color or choose from presets, how is this much different than what's already there?
Or is this a way of saying you prefer the way that dialog looks when choosing a color?
|
|
|
|

|
Jeremy Falcon wrote: Or is this a way of saying you prefer the way that dialog looks when choosing a color?
:->
For just quickly picking a given color using the scroll bars is a bit much. Now refining that color with the scroll bars isn’t so bad but getting the approximate color is a bit much.
I'd love to help, but unfortunatley I have prior commitments monitoring the length of my grass. :Andrew Bleakley:
|
|
|
|

|
S Douglas wrote: but getting the approximate color is a bit much.
The idea behind colors was simplicity and being small. With my usage of it I found out that you tend to learn what hues match which scrollbar positions just by using it a few times. Say, for instance the first time you specify orange you know what to do to specify it again.
|
|
|
|

|
Ok, 2.0 never did make it. The reason being is the stuff I wanted to add (ICC profiles, etc.) was just loosing sight of what Colorz was really meant to be - which is extremely lightweight and versatile.
Rather than make room for specifying colors in 20 different color spaces that will probably never get used anyway and ICC profiles that take time to configure, I thought it would be best to stick with one space (RGB) and continue to add ways to work with the colors in that particular space to keep Colorz quick and snappy.
Things like color management and color space conversions just seem to not fit the small footprint, sit in the wee corner of your screen kinda app I intended Colorz to be. As such, 2.0 has been canned.
So, this release is more of a incremental one, adding support for floating point representation (a format that many scientific applications expect to receive RGB colors in) along with some code clean ups so I won't have to hang my head in shame if someone actually sees it.
Jeremy Falcon
The mind is like a parachute. It works best when it is open. - Colin Angus Mackay (2006-08-18)
|
|
|
|

|
Jeremy Falcon wrote: which is extremely lightweight and versatile
and probably one of the very best tool kit items around.
Mike
Dear NYT - the fact is, the founding fathers hung traitors.
Vincent Reynolds: My opposition is as enlightened as your support, jackass.
dennisd45: My view of the world is slightly more nuanced
dennisd45 (the NAMBLA supporter) wrote: I know exactly what it means. So shut up you mother killing baby raper.
|
|
|
|
|

|
I'm partially color blind, so this little app is a god send to me! Especially the color grabber, so I can find out what precise color things are!!!
Nice one.
|
|
|
|

|
Thank you.
One of these days I'll get around to writing a newer version. I was originally thinking of having a bunch of different color space conversions, but found that to be impractical. If you don't mind, I'd be grateful if you could let me know (over time) what you find useful and if anything what you'd like to have in a newer version.
One of the things I intend to do for 2.0 is have the area around the cursor magnified (if chosen) to make it easier to see each pixel you're grabbing.
Jeremy Falcon
|
|
|
|
|

|
I started on 2.0 a while back but dropped it because I was putting too much crap into it (like color space conversion, ICC profiles, etc.). I then realized I was loosing sight of the original goal with Colorz -- to make it very lightweight (in regards to memory consumption) and to help with color values. The typical developer just doesn't need the stuff I was putting in.
But, your idea is awesome (if we're on the same page)! Are you suggesting to have Colorz automatically coordinate colors? Say, if you choose gray, it'll show you all the blues that go with it if you want a blue color for text? If so, that may be just enough reason to have a 2.0. And, of course, I'd give you credit for the idea.
BTW, at first I mistook your post and thought you were asking for the color values. Well, here's what I came up with in case you want 'em anyway.
Foreground: #5FE1FF
Background: #7B7B7B
Jeremy Falcon
|
|
|
|

|
Jeremy Falcon wrote:
I started on 2.0 a while back but dropped it because I was putting too much crap into it
Yeah, I understand to know what to do is more important than to know how to do it sometimes.
As a programmer I think why Colorz is useful for us is that programmer is not artist but GUI is always important. If there is no designer assisting we have to grab it from successful software, and if we want to do some innovation... For me I really don't know it before I've seen it Color Blind~~~
Sing when we're programming.
|
|
|
|

|
I have this to paint the decive:
WM_PAINT:
{
hDC = BeginPaint(hColor, &Ps);
NewBrush = CreateSolidBrush(RGB(200, 100, 50));
SelectObject(hDC, NewBrush);
Rectangle(hDC, 20, 20, 100, 100);
DeleteObject(NewBrush);
EndPaint(hColor, &ps);
}
break;
But how can i "update" the device when i scroll my scrollbar (making a color picker) to show the new color specified ?
Would apreciate all comments
|
|
|
|

|
You have to force a repaint for it to take effect. In Colorz I used the InvalidateRgn API call to do this.
BTW, why make a color picker when you can just use something like Colorz already?
Jeremy Falcon
|
|
|
|

|
Yeah, found it out and used InvalidateRect.
Well, I want to learn as much I can, and I can't just copy&paste then, but thanks anyway. Your answear is most appreciatet. Learn alot from your code thoug.
|
|
|
|

|
Kim Marius Haugen wrote:
Well, I want to learn as much I can, and I can't just copy&paste then, but thanks anyway.
I can understand that!
Jeremy Falcon
|
|
|
|

|
Will be out very soon! I've been sporadically working on it whilst ever so delightfully procrastinating at times. But, it's getting closer. If you don't see it in about a month, please kick somebody else's butt.
Jeremy L. Falcon
"It's in the mail."
Homepage : Sonork = 100.16311 Surely some striving souls survive symptomatic stress?
|
|
|
|

|
Hi Jeremy,
We're two months further now.
Any idea when we can expect v2.0?
What are the new features?
|
|
|
|
|

|
Jeremy Falcon wrote:
Soon - like in a week or two.
I nearly can't wait.
Jeremy Falcon wrote:
It'll work with more than one color space, support ICC profiles for the device-dependent color spaces (CMYK, CMY), enhanced grab color feature, more compact window and more manageable, windows/mac compatibility, cleaned up the code, and so forth. Oh yeah, I added an about box also.
Sounds good. Although I was already very satisfied with your first version (gave it a big 5).
|
|
|
|

|
Geert Delmeiren wrote:
gave it a big 5
Heck, I would've been happy with a small 5. Thanks!
Jeremy Falcon
Imputek
"..." - Paul Watson 07-17
|
|
|
|

|
Dude? Where's 2.0?
--
Gott weiß ich will kein Engel sein.
|
|
|
|

|
Well, did start doing some work on it, but I decided it would be best to make it integrate with VS.NET using the VSIP instead of being a standalone app. The catch is I'm not familiar with the .NET IDE yet, so I have some learning to do first.
Jeremy Falcon
|
|
|
|

|
Grab color is no longer working for me. I'm running Windows NT 4.0 (Service Pack 6a) with IE 5.5 (SP1).
|
|
|
|

|
You have to hold down the ALT key for it to work. This fixes the problem of you picking a color with the cursor and having Colorz pick up a new color when you move the cursor again. Now you can let go of ALT, so you do not need to worry about the mouse move.
BTW, there will be another update to codeproject. Currently, (the Nov. 10 update) has a little bug that sends garbage to the clipboard for the Auto Copy. This has been fixed, so it's a matter waiting for the post to go online.
Just make sure you end up with a version that was updated after Nov. 10 please.
|
|
|
|

|
Nice utility.
Did I miss something obvious: How do I turn off the grabbing when I positioned the cursor
over the desired color in some other window?
I expected that LMOUSEDOWN would do it but it does not.
Rud
|
|
|
|

|
I realized that too, but thanks for pointing it out. I'm making a newer version which implements a feature like so.
Sorry for the inconvenience, it's just been that work, moving, and what-nots have been driving me crazy lately
|
|
|
|

|
If you would like to have Web Safe Tool it will be better to use step 0x33 for R G B components. For instance, valid values for R channel will be 0x00, 0x33, 0x66, 0x99, 0xCC and 0xFF. I hope it will help
|
|
|
|

|
The source link is broken
|
|
|
|
 |
|
|
General News Suggestion Question Bug Answer Joke Rant Admin
|
Aids developers with color intensities
| Type | Article |
| Licence | CPOL |
| First Posted | 14 Feb 2000 |
| Views | 99,331 |
| Bookmarked | 28 times |
|
|