我使用 TYPO3 CMS 6.2.14vhs 2.3.3
和Flux 7.2.1
-FluidContent 4.3.1
我的 TYPO3 编辑器需要有机会通过vhs
-ViewHelper 上传 SVG 图像。我制作了一个新的FluidTYPO3内容元素 (FCE),但在前端看不到 SVG 图像。嗯?
助焊剂-FlexForm
<flux:field.file name="imgIcon" allowed="jpg,gif,png,jpeg,svg" uploadFolder="uploads/tx_myext" minItems="0" maxItems="1" size="1" />
...
<v:media.image src="uploads/tx_myext/{imgIcon}" alt="Icon" />
输出
<div class="small-2 columns">
<img alt="Icon" src="" width="" height="">
</div>
我也使用 htaccess 条目,但没有成功。我的错在哪里?我需要height
并width
为此 ViewHelper 吗?向量中不可用vhs
吗?
<IfModule mod_mime.c>
...
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
...
</Ifmodule>
编辑:我也尝试了 Fluid ViewHelper,但 SVG 图像有height/width = 0
:
<f:image src="uploads/tx_myext/{imgIcon}" width="50" height="50" class="xy" alt="Icon" />