Skip to main content
Module

x/imagemagick_deno/src/drawables/drawable-text-kerning.ts

Deno port of the WASM library for ImageMagick
Latest
File
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.// Licensed under the Apache License, Version 2.0.import { IDrawable } from "./drawable.ts";import { IDrawingWand } from "./drawing-wand.ts";
export class DrawableTextKerning implements IDrawable { private readonly _kerning: number;
constructor(kerning: number) { this._kerning = kerning; }
draw(wand: IDrawingWand): void { wand.textKerning(this._kerning); }}