UNPKG

edgeit.js

Version:

基于Canvas的智能图片描边处理库

17 lines (14 loc) 388 B
interface EdgeItConfig { strokeColor?: string; strokeWidth?: number; cache?: boolean; willReadFrequently?: boolean; imageSmoothing?: boolean; width?: number; height?: number; } declare class EdgeIt { constructor(config?: EdgeItConfig); process(imageSrc: string | HTMLImageElement): Promise<HTMLImageElement>; } export default EdgeIt;