Updated docs
the build was successful Details

This commit is contained in:
tastytea 2018-12-27 06:33:19 +01:00
parent e167783026
commit 9c60212ca8
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ If something seems to be wrong, exceptions will be thrown.
int main()
{
Identiconpp identicon(5, 5, Identiconpp::algorithm::ltr_symmetric,
"ffffff88", { "800000ff" });
"ffffff80", { "800000ff" }, { 10, 10 });
Magick::Image img;
img = identicon.generate("55502f40dc8b7c769880b10874abc9d0", 200);
img.write("identicon.png");

View File

@ -52,12 +52,12 @@ public:
* image formats and sizes. The colors must consist of exactly 8
* digits.
*
* @param rows Number of rows
* @param columns Number of columns
* @param type The type of identicon
* @param rows Number of rows
* @param type The algorithm to use
* @param background Background color, hexadecimal, rrggbbaa
* @param foreground vector of foreground colors
* @param padding Padding { left & right, top & down }
* @param padding Padding in pixels { left & right, top & down }
*/
explicit Identiconpp(const uint8_t columns, const uint8_t rows,
algorithm type = algorithm::ltr_symmetric,
@ -69,7 +69,7 @@ public:
* @brief Generates identicon from digest.
*
* @param digest The pre-computed digest
* @param width The width of the image
* @param width The width of the image in pixels
*
* @return The image
*/