@dannadori/asciiart-worker-js
TypeScript icon, indicating that this package has built-in type declarations

1.0.35 • Public • Published

This is webworker module for AsciiArt.

asciiart

image

Install

$ npm install \@dannadori/asciiart-worker-js

API

generateAsciiArtDefaultConfig: () => AsciiConfig;
generateDefaultAsciiArtParams: () => AsciiOperationParams;

AsciiArtWorkerManager
init: (config: AsciiConfig | null) => Promise<unknown>;
predict(targetCanvas: HTMLCanvasElement, params: AsciiOperationParams): Promise<HTMLCanvasElement>;

Configuration and Parameter


export interface AsciiConfig{
    browserType         : BrowserType
    processOnLocal      : boolean
}


export interface AsciiOperationParams{
    type: AsciiFunctionType
    processWidth        : number
    processHeight       : number
    asciiStr            : string
    fontSize            : number
}

export enum AsciiFunctionType{
    AsciiArt
}

Step by step

Create environment and install package

$ npx create-react-app demo --template typescript
$ cd demo/
$ npm install
$ npm install @dannadori/asciiart-worker-js

Add source image to public.

In this time, the name is "srcImage.jpg"

Edit src/App.tsx

Sample code is here.

import React from 'react';
import './App.css';
import { AsciiArtWorkerManager, generateAsciiArtDefaultConfig, generateDefaultAsciiArtParams } from '@dannadori/asciiart-worker-js'

class App extends React.Component{

  manager = new AsciiArtWorkerManager()
  config = generateAsciiArtDefaultConfig()
  params = generateDefaultAsciiArtParams()

  srcCanvas = document.createElement("canvas")
  dstCanvas = document.createElement("canvas")

  componentDidMount = () =>{
    document.getRootNode().lastChild!.appendChild(this.srcCanvas)
    document.getRootNode().lastChild!.appendChild(this.dstCanvas)
    const srcImage = document.createElement("img")
    srcImage.onload = () =>{
      this.manager.init(this.config).then(()=>{
        this.srcCanvas.getContext("2d")!.drawImage(
          srcImage, 0, 0, this.srcCanvas.width, this.dstCanvas.height)
        return this.manager.predict(this.srcCanvas, this.params)
      }).then((res)=>{
        console.log(res)
        this.dstCanvas.getContext("2d")!.drawImage(res, 0, 0, this.dstCanvas.width, this.dstCanvas.height)
      })
    }
    srcImage.src = "./srcImage.jpg"
  }

  render = ()=>{
    return (
      <div className="App">
      </div>
    );
  }
}

export default App;


build and start

$ npm run start

Package Sidebar

Install

npm i @dannadori/asciiart-worker-js

Weekly Downloads

1

Version

1.0.35

License

MIT

Unpacked Size

24.8 kB

Total Files

10

Last publish

Collaborators

  • dannadori