我尝试使用内置图片的php创建.doc文件。 里面的图像有很大的重量和高度,但我想包括它而不创建它的新的小版本图像。
这是我的代码
<?php
set_time_limit (0);
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=test.doc");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<title>Hello World</title>
</head>
<body>
<img src="http://localhost/test_zip/img/jesse_what.png" style="max-width:50; width:50;max-height:50; height:50;">
</body>
</html>
如何调整大小的正确方法?因为我放在图片标签中的样式不起作用。
答案 0 :(得分:1)
添加px
并移除max-width:50
和max-height:50
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<title>Hello World</title>
</head>
<body>
<img src="http://localhost/test_zip/img/jesse_what.png" style="width:50px; height:50px;">
</body>
</html>
&#13;
答案 1 :(得分:0)
经过一段时间的搜索,我找到了一种方法。 所以我将宽度和高度属性添加到img标签
现在看起来像这样
<img src="http://localhost/test_zip/img/jesse_what.png" width="160" height="200">