You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jdstrydom Thanks for the tip, though that file does not exist for me . I have the folders /python2.7/ and /python3.5/ instead, and both their /dist-packages folders are empty.
It does seem to work as long as the image is within the bounds of the page though (in terms of coordinates).
@yourcelf@paddotk@jdstrydom I do have one question, that i thought of while working on this bug. Would it be more beneficial to have the signature image appear behind the pdf file? This way the pdf file will hide the image if text covers it, or do you want the image to hide any text the image file might be hiding?
IMHO that's not logical. Also imagine dotted lines that are intended to put a signature on, that would obfuscate the signature image as well.
Also, this isn't really related to this topic..
Hi,
Using Python 3.6 - received error message and zero-size signed .pdf when using for example:
signpdf --date myfile.pdf signature.png
file <myfile.pdf> to write to is not in binary mode. It may not be written to correctly. [pdf.py:453]
I had to change line 62 of "/usr/local/lib/python3.6/dist-packages/signpdf.py"
From: with open(output_filename, 'w') as fh:
To: with open(output_filename, 'wb') as fh:
All good now
Regards
Jurie
The text was updated successfully, but these errors were encountered: