All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
28 lines
968 B
TypeScript
28 lines
968 B
TypeScript
export default CanvasImageLayerRenderer;
|
|
/**
|
|
* @classdesc
|
|
* Canvas renderer for image layers.
|
|
* @api
|
|
*/
|
|
declare class CanvasImageLayerRenderer extends CanvasLayerRenderer<any> {
|
|
/**
|
|
* @param {import("../../layer/Image.js").default} imageLayer Image layer.
|
|
*/
|
|
constructor(imageLayer: import("../../layer/Image.js").default<any>);
|
|
/**
|
|
* @protected
|
|
* @type {?import("../../ImageBase.js").default}
|
|
*/
|
|
protected image_: import("../../ImageBase.js").default | null;
|
|
/**
|
|
* @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image.
|
|
*/
|
|
getImage(): HTMLCanvasElement | HTMLImageElement | HTMLVideoElement;
|
|
/**
|
|
* @param {import("../../pixel.js").Pixel} pixel Pixel.
|
|
* @return {Uint8ClampedArray} Data at the pixel location.
|
|
*/
|
|
getData(pixel: import("../../pixel.js").Pixel): Uint8ClampedArray;
|
|
}
|
|
import CanvasLayerRenderer from "./Layer.js";
|
|
//# sourceMappingURL=ImageLayer.d.ts.map
|