Code Monkey home page Code Monkey logo

h2i's Introduction

html2.io github cover graphic

html2.io

Html to image as a service

Features

  • HTML/CSS to image
  • HTML/CSS to pdf
  • Markdown to image
  • Built-in fonts & emoji support (Apple emoji OK)
  • Template engine
  • Write Template with React
  • CDN Ready
  • View All Features

Usage

Install

yarn add h2i

Simple usage

import * as H2I from "h2i";

const img = H2I.Client({
  apiKey: "<your-api-key>",
});

img.fromFile("test.html").then((image) => {
  image.save("test.png");
});

img.fromUrl("https://google.com").then((image) => {
  image.save("google.png");
});

img.fromHtml("<h1>Hello world</h1>").then((image) => {
  image.save("hello.png");
});

img.fromMd("# Hello world").then((image) => {
  image.save("hello.png");
});

img
  .fromRepo("https://github.com/gridaco/html2.io", {
    branch: "master",
    path: "README.md",
  })
  .then((image) => {
    image.save("readme.png");
  });

Fonts

Google fonts are supported by default. You can also use custom fonts by uploading them to the dashboard.

Aknowledgements

Special thanks to:

Usefull links

License

The source code and artworks are Apache 2.0 licensed, yet it is not allowed to deploy the whole service to make a replica service for monetization without significant modifications.

h2i's People

Contributors

softmarshmallow avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

autolens

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.