selfietoanime
v1.0.0
Published
Transform your selfie into an anime image
Downloads
136
Maintainers
Readme
selfieToAnime!
Transform your images applying an anime / manga style using AI.
It is based on the Photo2Cartoon repository
Installation
npm i --save selfieToAnime
Example
Transform an image from an external url
const anime = require('selfieToAnime');
anime.transform({
photo: 'https://media.gq.com.mx/photos/5e220ec2ffa8c7000803441e/16:9/w_1920,c_limit/40-datos-curiosos-para-descubrir-a-scarlett-johansson.jpg',
// To save the image to a specific path
destinyFolder: './images'
})
.then(data => {
console.log('Image', data);
})
.catch(err => {
console.log('Error', err);
});
Transform a local image and get image in base64
const anime = require('selfieToAnime');
const path = require('path');
anime.transform({
photo: path.join(__dirname, './image.jpg')
})
.then(data => {
console.log('Image in base64', data);
})
.catch(err => {
console.log('Error', err);
});
Result
{
"image": "/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODww...", // image in base64
"url": "https://act-artifacts.shadowcv.qq.com/mqq/ai_painting_anime/res/f812533e4d2e197fecaa91c5bf1f89d_244kg.jpg"
}
Related
You can find a job where this module is used directly on whatsapp here: WABOT