使用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');
?>
谢谢。
答案 0 :(得分:1)
当前,您只能设置WorksheetName
或WorksheetIndex
参数来缩小要转换的范围。
答案 1 :(得分:0)
如果您想转换一系列工作表,您只能在该范围内循环,每次从一张工作表转换一个单独的 PDF。 到目前为止没有更好的选择。