gpt4 book ai didi

python - Plone:缩放图像

转载 作者:行者123 更新时间:2023-11-28 19:57:57 24 4
gpt4 key购买 nike

我的 plone 页面模板中有以下代码:

<img 
tal:define="folderimagetitle python:context.getField('folderimagetitle').getAccessor(context)()"
tal:condition="folderimagetitle"
src=""
alt=""
tal:replace="structure python:context.getWrappedField('folderimage').tag(context, alt=folderimagetitle, css_class='photo')"
/>

基本上我想在 H1 标签旁边显示图片。该图像可以正常工作并显示,但它会显示与文本不对齐的完整图像尺寸。我也不想只添加高度和宽度属性,因为这会导致图像边缘参差不齐,无法很好地缩放。

如何将它缩小到 Plone 中可用的默认大小之一,即列表、图标、磁贴、缩略图、迷你、预览和大?

最佳答案

“现代”方式是使用 plone.app.imaging。

例子

<img tal:define="scales context/@@images;
thumbnail python: scales.scale('image', width=64, height=64);"
tal:condition="thumbnail"
tal:attributes="src thumbnail/url;
width thumbnail/width;
height thumbnail/height" />

http://plone.org/products/plone.app.imaging/

关于python - Plone:缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11936066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com