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.
在当前打开的笔记当前页的当前图层插入图片。
pngPath
static insertImage(pngPath: string): Promise<APIResponse<boolean>>;
string
APIResponse<boolean>
result
import { PluginNoteAPI } from 'sn-plugin-lib'; /** * 插入图片示例。 */ export async function exampleInsertImage() { const pngPath = '/storage/emulated/0/Note/demo.png'; const res = await PluginNoteAPI.insertImage(pngPath); if (!res.success) { throw new Error(res.error?.message ?? 'insertImage 调用失败'); } return res.result; }