gif-encoder-2 icon indicating copy to clipboard operation
gif-encoder-2 copied to clipboard

How create gif from base64?

Open goodwin74 opened this issue 5 years ago • 0 comments

How create gif from base64?

var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var urlencodedParser = bodyParser.urlencoded(({ limit: '250mb', extended: true, parameterLimit: 100 }));
app.post('/', urlencodedParser, function(req,res){
		var frames = JSON.parse(req.body.frames);
		//frames = ["data:image/jpeg;base64,......","data:image/jpe...",,"data:ima...", "..."];
});

goodwin74 avatar Dec 08 '19 14:12 goodwin74