Workflow template format : Image format

Hi, I’m creating a pdf report with a workflow.
I have a html template, but I can’t figure how I can precisly change the size of a thumbmail.
I already used the “Workflow template format : Image format” which is already set to tiny, but it’s not precise enough.
Is there a specific way to modify the size of it?
Thanks in advance.
Erwan

Solved Solved
1 6 1,370
1 ACCEPTED SOLUTION

I found the solution. To set the size of an image I needed to set in Behavior, format rules, Workflow template format : Image format to text.

Then use the in HTML like so:

<img src="<<ICON>>" class="icon">

.icon {
width: 10px;
height: 10px;
}

View solution in original post

6 REPLIES 6

One way I can think of… add a 1x1 table and set the column width as you need.

Can you be more specific please?

I’m using a HTML template where I collect the variable “ICON” that is containing the thumbnail.

<<Start:SELECT(NumUrgence[ContactID], AND ([Catégorie] = “Prestataires”, [_THISROW].[Code ensemble] = [Code ensemble immobilier]))>>
<> <> - <<Société>> :
<<Téléphone Fixe>>
<>

it display the thumbnail like that.

But I want the thumbnail to be smaller.

Sorry… I didn’t notice you were using HTML. I thought you were using Docs or Word as a template. Why don’t you use smaller icons?

I need big icon for the app, but little icon for the report. I just want to set the size of the icons in the report at 20x20 px for example. The format rules allows me to set it only to 50x50 px.

I found the solution. To set the size of an image I needed to set in Behavior, format rules, Workflow template format : Image format to text.

Then use the in HTML like so:

<img src="<<ICON>>" class="icon">

.icon {
width: 10px;
height: 10px;
}

Yes that’s a good solution.

Top Labels in this Space