如何在 phalcon 中设置具有特定宽度、高度和 css 的图像

how to set images with specific width,height and css in phalcon

我正在逐步在 phalcon 框架中开发一个简单的项目,但是在设置具有特定高度和宽度的图像以及 css classes 时卡住了。

如何在 phalcon 中执行此操作?

<img src="images/logo.png" style=" margin-top:20px; margin-left:10px; "width="265" height="54">

我的错。抱歉没有 class 但图像属性

<div class="col-md-6 logo"><img src="images/logo.png" style=" margin-top:20px; margin-left:10px; "width="265" height="54"></div>

如果您使用的是伏特模板引擎

{{ image("images/logo.png", "class": "col-md-6 logo") }}

如果您使用的是 phtml 模板

$this->tag->image(array("images/logo.png","class" => "col-md-6 logo"));

我找到的答案是

echo \Phalcon\Tag::image(array(
        "images/logo.png",
        "alt" => "Your image",
        'style' => 'width:100px;height:200px;margin-top:20px; margin-left:10px',
    ));