• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Resizing Signature Image on PDF Attachment

Resizing Signature Image on PDF Attachment 9 years 3 weeks ago #34762

I would like to place the captured signature image on a PDF attachment. Is it possible to resize the image to a width of 200 and a height of 100? I can "shrink" the image if I use a width attribute on the signature form field, but it makes it difficult for the user to sign. Thank you.
The administrator has disabled public write access.

Resizing Signature Image on PDF Attachment 8 years 11 months ago #34988

I have the same problem. How to shrink the signature in the pdf file?
The administrator has disabled public write access.

Resizing Signature Image on PDF Attachment 8 years 10 months ago #35371

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 634
  • Thank you received: 117
Hello

Resizing the signature image can be achieved by including the '{field_name:signature}' placeholder into a container and then resize it using a CSS definition. You can try implementing the following code into PDF Layout (HTML):

<head>
<style>
.signature img{
width:100px;
}
</style>
</head>
<body>
<div class="signature" >{Signature:signature}</div>
</body>
The administrator has disabled public write access.
The following user(s) said Thank You: johnatvision
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!