SvgColorMode
Contents
[
Hide
]SvgColorMode enum
Module: aspose_barcode.generation.svg_color_mode
Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through “fill-opacity” parameter
Enum Values
| Name | Value | Description |
|---|---|---|
| HSL | 2 | HSL mode, example: fill=“hsl(17, 100%, 53%)” fill-opacity=“0.73”. |
| HSLA | 3 | HSLA mode, example: fill=“hsla(30, 50%, 70%, 0.8)”. |
| RGB | 0 | RGB mode, example: fill="#ff5511" fill-opacity=“0.73”. Default mode. |
| RGBA | 1 | RGBA mode, example: fill=“rgba(255, 85, 17, 0.73)”. |
SvgColorMode.HSL
Type: int
Value: 2
HSL mode, example: fill=“hsl(17, 100%, 53%)” fill-opacity=“0.73”.
SvgColorMode.HSLA
Type: int
Value: 3
HSLA mode, example: fill=“hsla(30, 50%, 70%, 0.8)”.
SvgColorMode.RGB
Type: int
Value: 0
RGB mode, example: fill="#ff5511" fill-opacity=“0.73”. Default mode.
SvgColorMode.RGBA
Type: int
Value: 1
RGBA mode, example: fill=“rgba(255, 85, 17, 0.73)”.