首页 > 代码库 > openerp report image
openerp report image
webkit : 再mako 文件中插入以下代码, <% %>标签用于再mako中定义代码或者函数。
然后 ${ embed_image(‘图片类型‘, 图片字段 , 宽度,高度) } 即可, 本质上是使用html中显示 base64格式的图片标签
<img $width $heigh src="data:image/$tytpe;base64,$strng_of_base64" />
<%def embed_image(type, img, width=0, height=0) : "Transform a DB image into an embedded HTML image" if width : width = ‘width="%spx"‘%(width) else : width = ‘ ‘ if height : height = ‘height="%spx"‘%(height) else : height = ‘ ‘ toreturn = ‘<img %s %s src="data:image/%s;base64,%s" />‘%( width, height, type, str(img)) return toreturn%>
openerp report image
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。