animein
v1.6.1
Published
Transform your selfie into an anime image
Downloads
4
Maintainers
Readme
animein!
Ubah gambar Anda menerapkan gaya anime / manga menggunakan AI.
Requests Dari Photo2Cartoon repository
Installation
npm i git+github.com/wffzy/animein
IMPORTANT
Create file with name .env and fill with
PROXY_IP=<Your Proxy IP>
PROXY_PORT=<Your Proxy Port>
Please use proxy socks5 from chinese
Example
Mengubah gambar dari url eksternal
const anime = require('animein');
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',
// Menyimpan gambar ke path tertentu
destinyFolder: './images'
})
.then(data => {
console.log('Image', data);
})
.catch(err => {
console.log('Error', err);
});
Mengubah Gambar lokal menjadi base64
const anime = require('animein');
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
{
"base64": "/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODww...", // Gambar dalam base64
"url": "https://act-artifacts.shadowcv.qq.com/mqq/ai_painting_anime/res/f812533e4d2e197fecaa91c5bf1f89d_244kg.jpg",
"all": {
....
}
}
Related
feel free to contribute and fix with all of us so that everyone can use it, you can fork and fix after that you make a pull request so I can merge and update packages in npm , Thanks😄