unioffice/color/color.go

49 lines
1.4 KiB
Go
Raw Normal View History

// Copyright 2017 FoxyUtils ehf. All rights reserved.
2017-08-28 20:56:18 -05:00
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased on https://unidoc.io.
2017-08-28 20:56:18 -05:00
package color
import (
"github.com/unidoc/unioffice"
)
2017-08-28 20:56:18 -05:00
// Color is a 24 bit color that can be converted to
// internal ECMA-376 formats as needed.
type Color struct {
2017-09-02 21:10:36 -05:00
r, g, b, a uint8
2017-08-28 20:56:18 -05:00
isAuto bool
}
// RGB constructs a new RGB color with a given red, green and blue value.
func RGB(r, g, b uint8) Color {
return Color{r, g, b, 255, false}
2017-08-28 20:56:18 -05:00
}
2018-12-27 15:10:44 +09:00
// RGBA constructs a new RGBA color with a given red, green, blue and alpha
// value.
func RGBA(r, g, b, a uint8) Color {
return Color{r, g, b, a, false}
}
2017-08-28 20:56:18 -05:00
// IsAuto returns true if the color is the 'Auto' type. If the
// field doesn't support an Auto color, then black is used.
func (c Color) IsAuto() bool {
return c.isAuto
}
// AsRGBString is used by the various wrappers to return a pointer
// to a string containing a six digit hex RGB value.
func (c Color) AsRGBString() *string {
return unioffice.Stringf("%02x%02x%02x", c.r, c.g, c.b)
2017-08-28 20:56:18 -05:00
}
// AsRGBAString is used by the various wrappers to return a pointer
// to a string containing a six digit hex RGB value.
func (c Color) AsRGBAString() *string {
return unioffice.Stringf("%02x%02x%02x%02x", c.a, c.r, c.g, c.b)
2017-08-28 20:56:18 -05:00
}