Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
保存套索中的笔划为贴纸。
static saveStickerByLasso(path: string): Promise<APIResponse<boolean>>;
path
string
APIResponse<boolean>
result === true
import { PluginCommAPI } from 'sn-plugin-lib'; /** * 将当前套索中的笔划或几何图形保存为贴纸的示例。 */ export async function exampleSaveStickerByLasso() { const outPath = '/storage/emulated/0/Note/stickers/lasso.sticker'; const res = await PluginCommAPI.saveStickerByLasso(outPath); if (!res.success) { throw new Error(res.error?.message ?? 'saveStickerByLasso 调用失败'); } return res.result; }