Socket
Socket
Sign inDemoInstall

animein

Package Overview
Dependencies
176
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    animein

Transform your selfie into an anime image


Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Install size
147 MB
Created
Weekly downloads
 

Readme

Source

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": {
    ....
    }
}

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😄

Keywords

FAQs

Last updated on 14 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc