Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to create GIF from frames base64? #43

Open
goodwin74 opened this issue Dec 8, 2019 · 2 comments
Open

How to create GIF from frames base64? #43

goodwin74 opened this issue Dec 8, 2019 · 2 comments

Comments

@goodwin74
Copy link

goodwin74 commented Dec 8, 2019

How create gif from base64? and print gifbase64 example: res.send(GifBase64);

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...", "..."];
});
@arnoudcommandeur
Copy link

Hi @goodwin74 , have you found a solution for this?

@arnoudcommandeur
Copy link

I've finally solved it by using a Write Stream

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants