kcc24
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Image causing issues in FPDFHi,
After several days I gave up on FPDF and used TCPDF instead. It works perfectly fine, although it’s also fully based on FPDF. I didn’t question it and was happy to find a solution for this.
Hope I could help!
KCC24
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Image as background of signature pngThat works and is much prettier than my first solution. Thanks again, your help is very appreciated!
Forum: Plugins
In reply to: [Contact Form 7] Image causing issues in FPDFOk, I’ll try it in an FPDF forum. Do you know how to get an error message from this or is this an FPDF task, too?
Forum: Plugins
In reply to: [Contact Form 7] Image causing issues in FPDFThanks for the fast reply.
This attempt failed, same problem( although it could help us later). It also doesn’t work with local image files or remote images (via URL).
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Image as background of signature pngHi again,
thanks for the tip so far! I managed it by adding this code right after the sigFieldInit call:
sigFieldInit(i); bg_img.onload = function(){ var cnvs = document.getElementById("wpcf7_my_signature"); var ctx = cnvs.getContext("2d"); ctx.drawImage(bg_img, 0, 0, 280, 505); }Looks fine, but when the user clicks “Clear” it clears the background too. Adding same code in the sigFieldClear function did not work out.
EDIT: Looks like our latest answers intersected. 🙂
Can you tell me where exactly to add this to fix the clear/resize issue?Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Save signature locally / Autosaver AddonHello,
we already managed to locally store the base64 image with your help, thanks a lot!
Nevertheless it’ll be much prettier if it also worked in CF7 Autosaver. Thanks again for your effort.KCC24