我有一种html格式,我希望它在我的谷歌驱动器中以pdf格式创建
示例这是我的html格式。
<h1>Hello World</h1>
<p>paragraph here... </p>
我希望它在我的谷歌驱动器中成为PDF格式,但我不知道该怎么做。这是我使用google drive sdk的php的剪辑代码。
....
//Then, insert the file
$file = new Google_DriveFile();
$file->setTitle( 'new_pdf' );
$file->setMimeType( 'application/pdf' );
$createdFile = $service->files->insert( $file, array(
'data' => '<h1>Hello world!</h1><p>paragraph here... </p>',
'mimeType' => 'text/plain',
));
....
我的问题是如何将我的html格式应用于pdf内容?
我试过这个,但在我的google驱动器中,test.pdf
文件已损坏。