在使用convertapi将xlsx转换为pdf之前如何选择范围

时间:2019-03-04 04:42:02

标签: convertapi

使用convertapi,我想设置范围并将仅选定的区域转换为pdf。这可能吗?

<?php
require_once('vendor/autoload.php');
require_once 'vendor/convertapi/convertapi- 
php/lib/ConvertApi/ConvertApi.php';
use \ConvertApi\ConvertApi;
ConvertApi::setApiSecret('secret');
$result = ConvertApi::convert('pdf', [
    'File' => 'output/spreadsheet_2.xlsx',
], 'xlsx'
);
$result->saveFiles('output');
?>

谢谢。

2 个答案:

答案 0 :(得分:1)

当前,您只能设置WorksheetNameWorksheetIndex参数来缩小要转换的范围。

答案 1 :(得分:0)

如果您想转换一系列工作表,您只能在该范围内循环,每次从一张工作表转换一个单独的 PDF。 到目前为止没有更好的选择。