【问题标题】:How to use img tag in HTML reader (PHPWord)如何在 HTML 阅读器 (PHPWord) 中使用 img 标签
【发布时间】:2023-03-07 16:14:01
【问题描述】:

我正在使用 PHPWord 从 html 标签生成文件 .docx。

但 HTML Reader (PHPWord) 中的 img 标签不可用。

HTML 阅读器支持以下标签:

`<p>,<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,
<strong>,<em>,<sup>,<sub>,
<table>,<tr>,<td>,<ul>,<ol>,<li>.` 

我特别想知道是否有人可以告诉我如何使用 phpword 读取 img 标签以查看我的 .docx 中的图像

我需要修改这个file来读取img标签。

非常感谢。

【问题讨论】:

    标签: php image phpword


    【解决方案1】:

    您可以使用以下内容:

    $section = $phpWord->addSection();
    $section->addImage(
        'mars.jpg',
        array(
            'width' => 100,
            'height' => 100,
            'marginTop' => -1,
            'marginLeft' => -1,
            'wrappingStyle' => 'behind'
        )
    );
    

    See Documentation of PHPWORD

    【讨论】:

    猜你喜欢
    • 2015-05-30
    • 2015-07-22
    • 1970-01-01
    • 2019-05-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-01-21
    相关资源
    最近更新 更多