Socket
Socket
Sign inDemoInstall

jadianime-ts

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jadianime-ts

Convert your selfie to Anime style with QQ


Version published
Maintainers
1
Created
Source

Jadi Anime

Convert your selfie to Anime style with QQ

Installation

npm i jadianime-ts

Example

const { JadiAnime } = require('jadianime-ts')

async function toAnime(path) {
  try {
  let image = await JadiAnime(path)
  console.log(image)
  } catch (e) {
        console.log(e)
    }
}

toAnime(__dirname + '/eula.jpg') // Path to your selfie

Options

const { JadiAnime } = require('jadianime-ts')

async function toAnime(path) {
    try {
        let options = {
            // You can use proxy option if QQ banned your region.
            proxy: "socks5://172.105.247.104:8080", // https or socks5
            qqmode: 'china' // Use China or World
            // You must use china proxy if using qqmode china
        }
        let image = await JadiAnime(path, options)
        console.log(image)
    } catch (e) {
        console.log(e)
    }
}

toAnime(__dirname + '/eula.jpg') // Path to your selfie

Contributions

Software contributions are welcome. If you are not a dev, testing and reproting bugs can also be very helpful!

Questions?

Please open an issue if you have questions, wish to request a feature, etc.

FAQs

Package last updated on 17 Dec 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc