You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
3.6 KiB
133 lines
3.6 KiB
|
3 years ago
|
/**
|
||
|
|
* @param {HTMLImageElement|HTMLCanvasElement} image Image.
|
||
|
|
* @param {string} src Src.
|
||
|
|
* @param {import("../size.js").Size} size Size.
|
||
|
|
* @param {?string} crossOrigin Cross origin.
|
||
|
|
* @param {import("../ImageState.js").default} imageState Image state.
|
||
|
|
* @param {import("../color.js").Color} color Color.
|
||
|
|
* @return {IconImage} Icon image.
|
||
|
|
*/
|
||
|
|
export function get(image: HTMLImageElement | HTMLCanvasElement, src: string, size: import("../size.js").Size, crossOrigin: string | null, imageState: any, color: import("../color.js").Color): IconImage;
|
||
|
|
export default IconImage;
|
||
|
|
declare class IconImage extends EventTarget {
|
||
|
|
/**
|
||
|
|
* @param {HTMLImageElement|HTMLCanvasElement} image Image.
|
||
|
|
* @param {string|undefined} src Src.
|
||
|
|
* @param {import("../size.js").Size} size Size.
|
||
|
|
* @param {?string} crossOrigin Cross origin.
|
||
|
|
* @param {import("../ImageState.js").default} imageState Image state.
|
||
|
|
* @param {import("../color.js").Color} color Color.
|
||
|
|
*/
|
||
|
|
constructor(image: HTMLImageElement | HTMLCanvasElement, src: string | undefined, size: import("../size.js").Size, crossOrigin: string | null, imageState: any, color: import("../color.js").Color);
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {HTMLImageElement|HTMLCanvasElement}
|
||
|
|
*/
|
||
|
|
private hitDetectionImage_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {HTMLImageElement|HTMLCanvasElement}
|
||
|
|
*/
|
||
|
|
private image_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {string|null}
|
||
|
|
*/
|
||
|
|
private crossOrigin_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {Object<number, HTMLCanvasElement>}
|
||
|
|
*/
|
||
|
|
private canvas_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {import("../color.js").Color}
|
||
|
|
*/
|
||
|
|
private color_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {?function():void}
|
||
|
|
*/
|
||
|
|
private unlisten_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {import("../ImageState.js").default}
|
||
|
|
*/
|
||
|
|
private imageState_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {import("../size.js").Size}
|
||
|
|
*/
|
||
|
|
private size_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @type {string|undefined}
|
||
|
|
*/
|
||
|
|
private src_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private initializeImage_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
* @return {boolean} The image canvas is tainted.
|
||
|
|
*/
|
||
|
|
private isTainted_;
|
||
|
|
tainted_: boolean | undefined;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private dispatchChangeEvent_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private handleImageError_;
|
||
|
|
/**
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private handleImageLoad_;
|
||
|
|
/**
|
||
|
|
* @param {number} pixelRatio Pixel ratio.
|
||
|
|
* @return {HTMLImageElement|HTMLCanvasElement} Image or Canvas element.
|
||
|
|
*/
|
||
|
|
getImage(pixelRatio: number): HTMLImageElement | HTMLCanvasElement;
|
||
|
|
/**
|
||
|
|
* @param {number} pixelRatio Pixel ratio.
|
||
|
|
* @return {number} Image or Canvas element.
|
||
|
|
*/
|
||
|
|
getPixelRatio(pixelRatio: number): number;
|
||
|
|
/**
|
||
|
|
* @return {import("../ImageState.js").default} Image state.
|
||
|
|
*/
|
||
|
|
getImageState(): any;
|
||
|
|
/**
|
||
|
|
* @return {HTMLImageElement|HTMLCanvasElement} Image element.
|
||
|
|
*/
|
||
|
|
getHitDetectionImage(): HTMLImageElement | HTMLCanvasElement;
|
||
|
|
/**
|
||
|
|
* Get the size of the icon (in pixels).
|
||
|
|
* @return {import("../size.js").Size} Image size.
|
||
|
|
*/
|
||
|
|
getSize(): import("../size.js").Size;
|
||
|
|
/**
|
||
|
|
* @return {string|undefined} Image src.
|
||
|
|
*/
|
||
|
|
getSrc(): string | undefined;
|
||
|
|
/**
|
||
|
|
* Load not yet loaded URI.
|
||
|
|
*/
|
||
|
|
load(): void;
|
||
|
|
/**
|
||
|
|
* @param {number} pixelRatio Pixel ratio.
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private replaceColor_;
|
||
|
|
/**
|
||
|
|
* Discards event handlers which listen for load completion or errors.
|
||
|
|
*
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private unlistenImage_;
|
||
|
|
}
|
||
|
|
import EventTarget from "../events/Target.js";
|
||
|
|
//# sourceMappingURL=IconImage.d.ts.map
|