1
vote
1answer
106 views
How to deal with color loss on GDI+ Image Resize?
Hello All,
I am resizing images with C#/GDI+ using the following routing
bmpOut = new Bitmap(lnNewWidth, lnNewHeight);
Graphics g = Graphics.FromImage(bmpOut);
…
2
votes
3answers
146 views
How does Windows change Aero Glass color?
I'm using Windows 7 RTM and I wonder how the control panel is able to update the Aero Glass color so smoothly without restarting the DWM (uxsms). DwmSetColorizationColor isn't working any more...
0
votes
1answer
19 views
Modifying the color scheme for an Inno Setup Installer.
Hi.
I've been playing around with Inno Setup 5.3.6; trying to customize the installers colors. Mainly the banner that appears at the head of the installer. But as of yet i have no luck finding a way …
0
votes
1answer
33 views
Color hex calculation
I have a picture, i choose a color on the picture like:
#18212d
rgb: 24 33 45
when i colorize that picture by increased hue with 6 (202 => 208), saturation with 4 (25 => 29) (using photoshop), old …
1
vote
3answers
25 views
Style a border with a different brush color for each corner
I have created a static resource defining the border of a specific item in my xaml, but I can't find a good way to define a unique color for each side!
xaml:
<Border Style="{StaticResource …
0
votes
1answer
14 views
Blitting multisampled FBO with multiple color attachments in OpenGL
I have a frame buffer object in an OpenGL program with multiple colour attachments, and am trying to upgrade it to a multisampled FBO.
As I understand it, a multisampled FBO is only able to use …
0
votes
0answers
5 views
using colors in calculated member
Hi, Im using this query in MDX for a calculate measure
topcount(nonempty([StatusPlanes].[Status].Status.members,[Measures].[Planes]),1)(0).member_caption
this will bring me this result
…
0
votes
0answers
8 views
USING COLORS WITH MDX CALCULATE MEASURE
Hi, Im using this query in MDX for a calculate measure
topcount(nonempty([StatusPlanes].[Status].Status.members,[Measures].[Planes]),1)(0).member_caption
this will bring me this result
…
1
vote
1answer
99 views
How can I convert a color image to grayscale in MATLAB?
I am trying to implement an algorithm in computer vision and I want to try it on a set of pictures. The pictures are all in color, but I don't want to deal with that. I want to convert them to …
0
votes
1answer
20 views
change color of UITextField in iPhone
hello,
I have placed UITextField in UITableView and my TableViewCell color is Yellow , normally the background color of TextField in white i want to change the color of TextField to yellow or it …
1
vote
1answer
15 views
Dynamics AX Color Picker
Trying to add a color picker to a field in Dynamics AX 2009. Found an article providing some very simple steps for creating the color picker as a lookup, but I can't get it to work.
When creating …
0
votes
1answer
26 views
RGB to HSV in PHP
In PHP, what is the most straightforward way to convert a RGB triplet to HSV values?
2
votes
4answers
83 views
Can STDOUT and STDERR use different colors under XTerm / Konsole?
Is it even achievable?
We need STDERR (ie. other streams then STDOUT) to have different colo(u)r. For example red.
We use bash, terminal should be Konsole (XTerm, gnome terminal or any usable).
…
1
vote
4answers
52 views
Objective C Find closest color (rgb) match
I have a predefined array of rgb values. I want to be able to compare a user defined color to my array and return the closest match in Objective C.
Any help is greatly appreciated.
1
vote
4answers
57 views
In C# , How can i create a System.Drawing.Color object using a hex value ?
In C# , How can i create a System.Drawing.Color object using a value like this #FFFFF,#FGFG01 etc...
