com.dynamicpdf.api.WebColor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
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);
}
}