
com.dynamicpdf.api.WebColor Maven / Gradle / Ivy
package com.dynamicpdf.api;
/**
* Represents an RGB color created using the web hexadecimal convention.
*/
public class WebColor extends RgbColor {
/**
* Initializes a new instance of the WebColor
class.
*
* @param webHexString The hexadecimal string representing the color.
*/
public WebColor(String webHexString) {
setColorString(webHexString);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy