在Swift中将CHART对象导出为EMF格式文件
API
POST
https://api.aspose.cloud/v3.0/cells/export
将图表对象从电子表格导出到 EMF 文件是一项复杂的任务。将 CHART 导出为 EMF 格式转换由我们的 Swift SDK 执行,同时保留源 CHART 电子表格的主要结构和逻辑内容。我们的 Swift 库是在线将 CHART 对象导出为 EMF 格式文件的专业解决方案。该Cloud SDK为Swift开发人员提供了强大的功能和完美的EMF输出。
Swift 中的代码示例,使用 REST API 将电子表格中的 CHART 导出为 EMF 格式
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift/
import AsposeCellsCloud
let expectation1 = self.expectation(description: "checkAuth")
AsposeCellsCloudAPI.clientId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
AsposeCellsCloudAPI.clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
AuthAspose.checkAuth()
{
(authError) in
guard authError == nil else {
XCTFail("error checkAuth")
return
}
expectation1.fulfill()
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
let expectation = self.expectation(description: "testpostExport_Workbook")
let objectType:String = "chart"
let format:String = "emf"
var files = Dictionary<String, URL>()
files[BOOK1] = getURL(BOOK1)
files[MYDOC] = getURL(MYDOC)
LiteCellsAPI.postExport(files: files, objectType: objectType, format: format)
{
(response, error) in
guard error == nil else {
XCTFail("error testpostExport_Workbook")
return
}
if let response = response {
XCTAssertTrue(response is FilesResult)
expectation.fulfill()
}
}
self.waitForExpectations(timeout: testTimeout, handler: nil)
如何使用Swift API导出CHART到EMF
- 创建一个帐户仪表板获取免费API配额和授权详细信息
- 使用客户端 ID、客户端密钥、基本 URL 和 API 版本初始化 CellsApi
- 调用 postExport 方法获取结果流