如何在google doc php API中设置字体系列和分页符

时间:2018-01-10 10:25:09

标签: php google-drive-api google-docs google-api-php-client google-docs-api

我想添加默认字体系列' Calbri'到我的谷歌文档,由PHP API生成。 我搜索的内容越来越多,但没有找到解决我问题的具体方法。

$parent = 'XXXXX';
$file = new Google_Service_Drive_DriveFile(
        array(
            'name' => 'XXXX',
            'mimeType' => 'application/vnd.google-apps.folder',    
            'teamDriveId' => $parent,
            'parents' => array($parent)
        )
    );
    $filename = 'XXXX';
    $file->setName($filename);
    $file->setMimeType( 'application/vnd.google-apps.document' );

    $result = $this->serviceDrive->files->create($file, array(
        'data' => file_get_contents("path/to/file"),
        'uploadType' => 'multipart',
    ));

如何在google doc上添加默认字体,分页符和目录?

0 个答案:

没有答案