TCPDF不会使用<pre> tag

时间:2018-01-15 18:07:50

标签: tcpdf

I'm using TCPDF to render a simple HTML that mainly have the data between "pre" tag. All is fine except when I have text separated by tabs spaces. Then the text is misaligned and don't show the text aligned.

I'm testing the first sample code. https://tcpdf.org/examples/example_001/

Then I replace:

$html = <<<EOD
<pre>
RESEARCH LIST
XX-Name:            Notes: 
10-Progress         Get +20
20-Research         Get +2
27-Advanced Research        Get +5
28-Atmospheric Converters   Terraforming +1
29-Comet Ds     Terraforming +4
</pre>
EOD;

I get the PDF but the text isn't aligned with columns.

If I open as .html is aligned correctly.

<HTML>
<HEAD>
<TITLE>XYZ</TITLE>
</HEAD>
<body>
<PRE>
DC-Name:            Notes: 
10-Progress         Get +20
20-Research         Get +2
27-Advanced Research        Get +5
28-Atmospheric Converters   Terraforming +1
29-Comet Ds         Terraforming +4 
</PRE>
</body>
</HTML>

What is wrong?

Salut, Josep M

0 个答案:

没有答案