0

使用 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');
?>

提前致谢。

4

2 回答 2

1

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

于 2019-03-04T08:04:52.437 回答
0

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

于 2021-08-04T08:55:08.853 回答