ColorTranslator Class
Summary: Translates colors to and from GDI+ Color structures. This class cannot be inherited.
Module: aspose.psd
Full Name: aspose.psd.ColorTranslator
Aspose.PSD Version: 24.9.0
Methods
Name | Description |
---|---|
from_html(html_color) | Takes color from the HTML color. |
from_ole(ole_color) | Takes color from the OLE color. |
from_win32(win_32_color) | Takes color from the HTML color. |
to_html(c) | Creates HTML color from the color. |
to_ole(c) | Translates OLE color to color. |
to_win32(c) | Translates the color to win32 color. |
Method: from_html(html_color) [static]
from_html(html_color)
Takes color from the HTML color.
Parameters:
Parameter | Type | Description |
---|---|---|
html_color | string | HTML color. |
Returns
Type | Description |
---|---|
Color | The color. |
Method: from_ole(ole_color) [static]
from_ole(ole_color)
Takes color from the OLE color.
Parameters:
Parameter | Type | Description |
---|---|---|
ole_color | int | OLE color. |
Returns
Type | Description |
---|---|
Color | The color. |
Method: from_win32(win_32_color) [static]
from_win32(win_32_color)
Takes color from the HTML color.
Parameters:
Parameter | Type | Description |
---|---|---|
win_32_color | int | Win32 color. |
Returns
Type | Description |
---|---|
Color | The color. |
Method: to_html(c) [static]
to_html(c)
Creates HTML color from the color.
Parameters:
Parameter | Type | Description |
---|---|---|
c | Color | The color class. |
Returns
Type | Description |
---|---|
string | The html string color. |
Method: to_ole(c) [static]
to_ole(c)
Translates OLE color to color.
Parameters:
Parameter | Type | Description |
---|---|---|
c | Color | The color. |
Returns
Type | Description |
---|---|
int | The OLE color. |
Method: to_win32(c) [static]
to_win32(c)
Translates the color to win32 color.
Parameters:
Parameter | Type | Description |
---|---|---|
c | Color | The color. |
Returns
Type | Description |
---|---|
int | The win32 color. |