From da739e78dadcc497f59d930491f757cdfa4ae968 Mon Sep 17 00:00:00 2001 From: Julian Descottes Date: Sun, 24 Sep 2017 15:21:00 +0200 Subject: [PATCH] Issue #743 - bump color palette cap to 256 --- src/js/Constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/Constants.js b/src/js/Constants.js index b4bcfb0c..61e2a2f4 100644 --- a/src/js/Constants.js +++ b/src/js/Constants.js @@ -12,7 +12,7 @@ var Constants = { MAX_HEIGHT : 1024, MAX_WIDTH : 1024, - MAX_PALETTE_COLORS : 100, + MAX_PALETTE_COLORS : 256, // allow current colors service to get up to 256 colors. // GIF generation is different if the color count goes over 256. MAX_WORKER_COLORS : 256,