12345async function IMAGE(file, options = {}) { const imgSeg = segment.image(file) imgSeg.sub_type = options.isface ? 1 : 0 return imgSeg}示例12345// 发送表情包await IMAGE(fileUrl,{isface : true})// 发送图片await IMAGE(fileUrl,{isface : false})