/** * 判断一个对象是否可当作 ImageData 用 */ export function isImageData(object: any) { return object.data && object.height !== undefined && object.width !== undefined }