Skip to content

Commit edc4970

Browse files
authored
Merge pull request #1696 from msebolt/resource-file-consolidation-pr14
resource file consolidation pr14
2 parents 6095063 + 8b935a8 commit edc4970

4 files changed

+29
-64
lines changed

.openpublishing.redirection.json

+5
Original file line numberDiff line numberDiff line change
@@ -7480,6 +7480,11 @@
74807480
"redirect_url": "/cpp/windows/window-panes-image-editor-for-icons",
74817481
"redirect_document_id": false
74827482
},
7483+
{
7484+
"source_path": "docs/windows/custom-color-selector-dialog-box-image-editor-for-icons.md",
7485+
"redirect_url": "/cpp/windows/customizing-or-changing-colors-image-editor-for-icons",
7486+
"redirect_document_id": false
7487+
},
74837488
{
74847489
"source_path": "docs/windows/activationfactory-activationfactory-constructor.md",
74857490
"redirect_url": "/cpp/windows/activationfactory-class#activationfactory",

docs/windows/TOC.md

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
###### [Choosing a Transparent or Opaque Background (Image Editor for Icons)](choosing-a-transparent-or-opaque-background-image-editor-for-icons.md)
117117
###### [Inverting the Colors in a Selection (Image Editor for Icons)](inverting-the-colors-in-a-selection-image-editor-for-icons.md)
118118
###### [Customizing or Changing Colors (Image Editor for Icons)](customizing-or-changing-colors-image-editor-for-icons.md)
119-
####### [Custom Color Selector Dialog Box (Image Editor for Icons)](custom-color-selector-dialog-box-image-editor-for-icons.md)
120119
###### [Saving and Loading Different Color Palettes (Image Editor for Icons)](saving-and-loading-different-color-palettes-image-editor-for-icons.md)
121120
####### [Load Palette Colors Dialog Box (Image Editor for Icons)](load-palette-colors-dialog-box-image-editor-for-icons.md)
122121
###### [Colors Window (Image Editor for Icons)](colors-window-image-editor-for-icons.md)

docs/windows/custom-color-selector-dialog-box-image-editor-for-icons.md

-56
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,41 @@
11
---
22
title: "Customizing or Changing Colors (Image Editor for Icons)"
33
ms.date: "11/04/2016"
4+
f1_keywords: ["vc.editors.customcolorselector"]
45
helpviewer_keywords: ["dithered color, Image editor", "Custom Color Selector dialog box [C++]", "Image editor [C++], Colors Palette", "colors [C++], image", "bitmaps [C++], colors", "images [C++], colors", "HSL values", "Colors Palette, Image editor", "RGB color values", "Adjust Colors command [C++]", "Image editor [C++], dithered color"]
56
ms.assetid: e58f6b32-f435-4d9a-a570-7569433661ae
67
---
78
# Customizing or Changing Colors (Image Editor for Icons)
89

9-
The **Image** editor's [Colors palette](../windows/colors-window-image-editor-for-icons.md) initially displays 16 standard colors. In addition to the displayed colors, you can create your own custom colors. You can then [save and load a customized Color palette](../windows/saving-and-loading-different-color-palettes-image-editor-for-icons.md).
10+
The **Image** editor's [Colors palette](../windows/colors-window-image-editor-for-icons.md) initially displays 16 standard colors. With displayed colors, you can also create your own custom colors. You can then [save and load a customized Color palette](../windows/saving-and-loading-different-color-palettes-image-editor-for-icons.md).
1011

11-
### To change colors on the colors palette
12+
The **Custom Color Selector** dialog box allows you to customize the colors you use for your image. The following properties included are:
13+
14+
|Property|Description|
15+
|---|---|
16+
|**Gradient Color Display**|Changes the values of a selected color. Position the crosshair on the color you want to change. Then move the slider up or down to change the luminosity or RGB values of the color.|
17+
|**Luminosity Bar**|Sets the luminosity for the color you select in the **Gradient Color Display** box. Select and drag the white arrow up the bar for greater brightness or down for less. The **Color** box displays the color you've selected and the effect of the luminosity you set.|
18+
|**Color**|Lists the hue (color wheel value) of the color you're defining. Values range from 0 to 240, where 0 is red, 60 is yellow, 120 is green, 180 is cyan, 200 is magenta, and 240 is blue.|
19+
|**Hue**|Lists the hue (color wheel value) of the color you're defining. Values range from 0 to 240, where 0 is red, 60 is yellow, 120 is green, 180 is cyan, 200 is magenta, and 240 is blue.|
20+
|**Sat**|Specifies the saturation value of the color you're defining. Saturation is the amount of color in a specified hue. Values range from 0 to 240.|
21+
|**Lum**|Lists the luminosity (brightness) of the color you're defining. Values range from 0 to 240.|
22+
|**Red**|Specifies the red value of the color you're defining. Values range from 0 to 255.|
23+
|**Green**|Specifies the green value of the color you're defining. Values range from 0 to 255.|
24+
|**Blue**|Specifies the blue value of the color you're defining. Values range from 0 to 255.|
25+
26+
## To change colors on the colors palette
1227

1328
1. From the **Image** menu, choose **Adjust Colors**.
1429

15-
2. In the [Custom Color Selector dialog box](../windows/custom-color-selector-dialog-box-image-editor-for-icons.md), define the color by typing RGB or HSL values in the appropriate text boxes or choose a color in the **Gradient Color Display** box.
30+
1. In the **Custom Color Selector** dialog box, define the color by typing RGB or HSL values in the appropriate text boxes or choose a color in the **Gradient Color Display** box.
1631

17-
3. Set the luminosity by moving the slider on the **Luminosity** bar.
32+
1. Set the luminosity by moving the slider on the **Luminosity** bar.
1833

19-
4. Many custom colors are dithered. If you want the solid color closest to the dithered color, double-click the **Color** box.
34+
1. Many custom colors are dithered. If you want the solid color closest to the dithered color, double-click the **Color** box.
2035

2136
If you later decide you want the dithered color, move the slider on the **Luminosity** bar or move the cross hairs in the **Gradient Color Display** box again to restore the dithering.
2237

23-
5. Click **OK** to add the new color.
38+
1. Select **OK** to add the new color.
2439

2540
## Requirements
2641

@@ -29,4 +44,6 @@ None
2944
## See Also
3045

3146
[Accelerator Keys](../windows/accelerator-keys-image-editor-for-icons.md)<br/>
32-
[Working with Color](../windows/working-with-color-image-editor-for-icons.md)
47+
[Working with Color](../windows/working-with-color-image-editor-for-icons.md)<br/>
48+
[Image Menu](../windows/image-menu-image-editor-for-icons.md)<br/>
49+
[Colors Window](../windows/colors-window-image-editor-for-icons.md)

0 commit comments

Comments
 (0)