Guest User

Untitled

a guest
Jun 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2.  
  3. include('mpdf/mpdf.php');
  4.  
  5. $mpdf=new mPDF();
  6.  
  7. $mpdf->WriteHTML('<img src="images/logo.png">'); //Write HTML
  8.  
  9. $mpdf->Output(); //Show the output
  10.  
  11. ?>
  12.  
  13. <?php
  14. $curl = curl_init();
  15.  
  16. curl_setopt_array($curl, array(
  17. CURLOPT_URL => "https://api.pdfshift.io/v2/convert/",
  18. CURLOPT_RETURNTRANSFER => true,
  19. CURLOPT_POST => true,
  20. CURLOPT_POSTFIELDS => json_encode({'source': 'https://pdfshift.io/documentation'}),
  21. CURLOPT_HTTPHEADER => array('Content-Type:application/json'),
  22. CURLOPT_USERPWD => 'YOUR_API_KEY:'
  23. ));
  24.  
  25. $response = curl_exec($curl);
  26. file_put_content('pdfhsift-documentation.pdf', $response);
Add Comment
Please, Sign In to add comment