All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.canvas.CanvasText Maven / Gradle / Ivy

package js.web.canvas;

import js.lang.Any;


public interface CanvasText extends Any {
    void fillText(String text, double x, double y, double maxWidth);

    void fillText(String text, double x, double y);

    TextMetrics measureText(String text);

    void strokeText(String text, double x, double y, double maxWidth);

    void strokeText(String text, double x, double y);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy