Änderungen https Andy Müller rückgängig gemacht
This commit is contained in:
@ -527,7 +527,7 @@ $objWriter->setSheetIndex(0);
|
||||
|
||||
There might be situations where you want to explicitly set the included images root. For example, one might want to see
|
||||
```html
|
||||
<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="http://www.domain.com/*images/logo.jpg" border="0">
|
||||
<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="https://www.domain.com/*images/logo.jpg" border="0">
|
||||
```
|
||||
|
||||
instead of
|
||||
@ -539,7 +539,7 @@ instead of
|
||||
You can use the following code to achieve this result:
|
||||
|
||||
```php
|
||||
$objWriter->setImagesRoot('http://www.example.com');
|
||||
$objWriter->setImagesRoot('https://www.example.com');
|
||||
```
|
||||
|
||||
##### Formula pre-calculation
|
||||
@ -623,9 +623,9 @@ Currently, the following libraries are supported:
|
||||
|
||||
Library | Version used for testing | Downloadable from | PHPExcel Internal Constant
|
||||
--------|--------------------------|----------------------------------|----------------------------
|
||||
tcPDF | 5.9 | http://www.tcpdf.org/ | PDF_RENDERER_TCPDF
|
||||
mPDF | 5.4 | http://www.mpdf1.com/mpdf/ | PDF_RENDERER_MPDF
|
||||
domPDF | 0.6.0 beta 3 | http://code.google.com/p/dompdf/ | PDF_RENDERER_DOMPDF
|
||||
tcPDF | 5.9 | https://www.tcpdf.org/ | PDF_RENDERER_TCPDF
|
||||
mPDF | 5.4 | https://www.mpdf1.com/mpdf/ | PDF_RENDERER_MPDF
|
||||
domPDF | 0.6.0 beta 3 | https://code.google.com/p/dompdf/ | PDF_RENDERER_DOMPDF
|
||||
|
||||
The different libraries have different strengths and weaknesses. Some generate better formatted output than others, some are faster or use less memory than others, while some generate smaller .pdf files. It is the developers choice which one they wish to use, appropriate to their own circumstances.
|
||||
|
||||
@ -710,5 +710,5 @@ $objWriter->save('write.xls');
|
||||
|
||||
Notice that it is ok to load an xlsx file and generate an xls file.
|
||||
|
||||
[21]: http://pear.php.net/package/Spreadsheet_Excel_Writer
|
||||
[22]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home
|
||||
[21]: https://pear.php.net/package/Spreadsheet_Excel_Writer
|
||||
[22]: https://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home
|
||||
|
Reference in New Issue
Block a user