如何在 mpdf 中居中图像?

How can I center image in mpdf?

我想在 mpdf(版本 6>)中居中图像。

这是我发送到 mpdf 的(缩短的)html 输出。 displayed class 没有帮助。

<style>
IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }
</style>

<img style="max-height:600px" class="displayed" src="/images/size_original/m_princezna_1.jpg"/>

在图像的父 HTML 元素上添加 text-align: center 属性,例如:

body { text-align: center }

我尝试了 Finwe 的解决方案,但将图像移到了下一页。结合 Ram Guru99 的解决方案 here 的解决方法也是如此:

<table style="width:100%;">
  <tr>
    <td align="center">
      <img src="<?php echo $imagepath ;?>"/>
    </td>
   </tr>
</table>