将 PICTURE 从 Excel 导出为 WMF

用于将图片导出到 WMF 文件的 NodeJS 库

使用Cells云的Export API导出NodeJS中的Excel文件内部对象工作流程。这是使用 NodeJS 在线将电子表格中的图片导出为 WMF 格式文件的专业解决方案。

使用 Cells Cloud SDK for NodeJS 将 PICTURE 对象导出为 WMF 格式文件

API
POST
https://api.aspose.cloud/v3.0/cells/export

将 PICTURE 对象从 Excel 文件导出到 WMF 文件是一项复杂的任务。将 PICTURE 导出为 WMF 格式转换由我们的 NodeJS SDK 执行,同时保留源 PICTURE 电子表格的主要结构和逻辑内容。我们的 NodeJS 库是在线将 PICTURE 对象导出为 WMF 格式文件的专业解决方案。该Cloud SDK为NodeJS开发人员提供了强大的功能和完美的WMF输出。

NodeJS 中使用 REST API 将电子表格中的图片导出为 WMF 格式的代码示例

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-node/
    const { LightCellsApi, PostExportRequest } = require("asposecellscloud");
    const localPath = "C:/";
    var fs = require('fs');
    var path = require('path');
    const cellsApi = new LightCellsApi(process.env.ProductClientId, process.env.ProductClientSecret);
    const AssemblyTestXlsx = "assemblytest.xlsx";
    var dataAssemblyTestXlsx =fs.createReadStream(localPath  + AssemblyTestXlsx);
    const DataSourceXlsx = "datasource.xlsx";
    var dataDataSourceXlsx =fs.createReadStream(localPath  + DataSourceXlsx);
    var req = new PostExportRequest({
      file:{AssemblyTestXlsx:dataAssemblyTestXlsx ,DataSourceXlsx:dataDataSourceXlsx },
      objectType : "picture",
      format: "wmf",
    });
    cellsApi.postExport(req)
      .then((result) => {
        let buff = new Buffer(result.body.files[0].fileContent, 'base64');
        fs.writeFileSync(result.body.files[0].filename, buff);
    });

如何使用Cells Cloud SDK for Node将Excel PICTURE中的对象导出为WMF

  1. 注册一个帐户仪表板获取免费API配额和授权详细信息
  2. 使用您的客户端 ID、客户端密钥、基本 URL 和 API 版本初始化 Cells API。
  3. 使用 `postExport` 方法检索结果流。

系统要求

  1. 节点 v6.17.1 或更高版本