Giter VIP home page Giter VIP logo

qc-api's Introduction

qc-api

API Quoted Chat Telegram Support Replit Host!

Metode Request

Path Request Only Post!
POST https://qc-api.rizzlogy.repl.co/generate

Options

Body Type Description
type string Output image type. May be: quote, image, null
backgroundColor string Quote background color. Can be Hex, name or random for a random color
messages array Array of messages
width number Maximum width
height number Maximum height
scale number Scale

Example Request POST Method

Quoted Chat Without Media

const axios = require('axios')
const fs = require('fs')

const text = "Hello World"
const username = "RizzyFuzz"
const avatar =  "https://telegra.ph/file/b10b6d0ab3ef16e126cf5.jpg"
const baseurl = "https://qc-api.rizzlogy.repl.co/generate"

const json = {
  "type": "quote",
  "format": "png",
  "backgroundColor": "#1b1429",
  "width": 512,
  "height": 768,
  "scale": 2,
  "messages": [
    {
      "entities": [],
      "avatar": true,
      "from": {
        "id": 1,
        "name": username,
        "photo": {
          "url": avatar
        }
      },
      "text": text,
      "replyMessage": {}
    }
  ]
};

const response = axios.post(baseurl, json, {
        headers: {
        'Content-Type': 'application/json'
}
}).then(res => {
    const buffer = Buffer.from(res.data.result.image, 'base64')
       fs.writeFile('Quotly.png', buffer, (err) => {
      if (err) throw err;
    })
});

Quoted Chat With Media

const axios = require('axios')
const fs = require('fs')

const text = "Hello World"
const username = "RizzyFuzz"
const avatar =  "https://telegra.ph/file/b10b6d0ab3ef16e126cf5.jpg"
const mediaReply = "https://telegra.ph/file/c8d1dbcaafb17d933d306.jpg"
const baseurl = "https://qc-api.rizzlogy.repl.co/generate"

const json = {
  "type": "quote",
  "format": "png",
  "backgroundColor": "#1b1429",
  "width": 512,
  "height": 768,
  "scale": 2,
  "messages": [
    {
      "entities": [],
      "media": {
        "url": mediaReply
      },
      "avatar": true,
      "from": {
        "id": 1,
        "name": username,
        "photo": {
          "url": avatar
        }
      },
      "text": text,
      "replyMessage": {}
    }
  ]
};

const response = axios.post(baseurl, json, {
        headers: {
        'Content-Type': 'application/json'
}
}).then(res => {
    const buffer = Buffer.from(res.data.result.image, 'base64')
       fs.writeFile('Quotly.png', buffer, (err) => {
      if (err) throw err;
    })
});

Response

Quotly.png

qc-api's People

Contributors

lyosu avatar rizzlogy avatar dependabot[bot] avatar arifzyn19 avatar aliaryantech avatar ron788 avatar kylmakalle avatar zeyndvp avatar durof avatar purofle avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.