Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
7412 Представления

If i have a module with an image, how to embed an image from my field on module to webkit pdf.

Аватар
Отменить
Автор Лучший ответ

I found it:

On your mako template:

${helper.embed_image('png', object.image,50,50) | n}

Where

helper.embed_image(image_type, object_image,width,height)
Аватар
Отменить
Лучший ответ

We use in sale_order:

<img src="data:image/png;base64,${line.product_id.image}" />

But than you must sure that all product images are png.

Аватар
Отменить

In some case, if you want to add fixed image, I will use base64 module to encode, decode this image and insert it into report

Related Posts Ответы Просмотры Активность
0
мар. 15
3439
2
нояб. 22
3911
3
апр. 25
11344
1
февр. 16
7815
1
янв. 16
4231