Initial commit

This commit is contained in:
jdescottes 2014-05-12 00:50:13 +02:00
parent 2827bbe94a
commit cc45ede931
3 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,7 @@
var ns = $.namespace("pskl.controller.settings");
var URL_MAX_LENGTH = 60;
var MAX_GIF_COLORS = 256;
ns.GifExportController = function (piskelController) {
this.piskelController = piskelController;
@ -114,9 +115,10 @@
};
ns.GifExportController.prototype.renderAsImageDataAnimatedGIF = function(zoom, fps, cb) {
var preserveColors = pskl.app.currentColorsService.getCurrentColors().length < MAX_GIF_COLORS;
var gif = new window.GIF({
workers: 2,
quality: 10,
quality: 1,
width: this.piskelController.getWidth()*zoom,
height: this.piskelController.getHeight()*zoom
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long