Questions tagged [jsignature]

jSignature is a JavaScript widget (a jQuery plugin) that simplifies creation of a signature capture field in a browser window, allowing a user to draw a signature using mouse, pen, or finger.

47 questions
5
votes
2 answers

JSignature recreate signature from db

I have managed to save JSignature data to the database. The string looks like this.…
MSH
  • 297
  • 1
  • 3
  • 12
3
votes
1 answer

I can't restore the original image from a Base30 text jSignature representation

I am trying to implement the jSignature library in my application but I can't make it work, the actual problem is trying to recreate the original image from the base30 text. In order to do it I draw something in their demo, take the base30 text and…
Alberto Méndez
  • 1,044
  • 14
  • 31
3
votes
2 answers

How to display multiple signatures in one page using jSignature.js?

I'm trying to display two signatures in one PHP page, but unfortunately the first signature field is only seems to be working and after adding another signature canvas disappears, see below: Screenshot of jSignature page here I've tried change CSS…
3
votes
0 answers

jSignature on Android device using Chrome doesn't work when zoomed

When I use Chrome on any mobile device the signature will only work if the page is displayed in default zoom. If I zoom in on the signature area it won't render correctly. It looks like the x and y coordinates are offset and the signature is drawn…
Per
  • 491
  • 6
  • 19
2
votes
1 answer

jSignature working in ASP.NET Web Forms, but not in MVC4 - Why?

I have recently used the jSignature plugin in an ASP.NET Web Forms project successfully. I am trying to add the same functionality to a new MVC4 project. When I try to run the MCV view featuring the jQuery functionality, in debug mode, the following…
Childa75
  • 23
  • 5
2
votes
1 answer

JSignature - problems exporting to jpeg

I have a div which I'm applying the jSignature plugin to with var $sigdiv = $(".jsig") $sigdiv.jSignature() // inits the jSignature widget. I have a button to capture this to base64 then pass it to PHP to create the image on the…
Graham
  • 57
  • 1
  • 11
1
vote
0 answers

Validating that a signature box has been filled

I'm trying to make the signature mandatory. I've looked through a lot of the posts and i can't seem to get any result. Javascript is not my strongest language, far from it. I know the current code is probably far from what I need, I've tried about…
Krash_Site
  • 11
  • 2
1
vote
0 answers

How integrate jSignature with php

I need to put hand written signature to pdf. This pdf is created by dompdf and it works fine. Open pdf and put signature in pdf is to complicate for workers :) This must be easy to use. I find jSignature and I think its perfect for this project. I…
radall
  • 11
  • 1
1
vote
1 answer

Converting a svg base64 string to image - C#

I post a svg string to the server, in order to Convert svg string to image (png) Save image to database (binary data) I am however stranded at converting the string successfully to an image. The SVG string is generated from…
Kman
  • 4,809
  • 7
  • 38
  • 62
1
vote
1 answer

jSignature copy svg information to form text field

I have this script running, the user can place it's signature. But I am not succeeding in getting thesvg information that was generated copied to an text field so I can send it with this html form to my database.
1
vote
2 answers

jSignature is not a function

I'm trying to use jSignature in my website, but it keeps showing me this error: Uncaught TypeError: $(...).jSignature is not a function My code is:
$("#signature").jSignature(); I have Jquery 1.11.1:
Rafael Mateus
  • 43
  • 3
  • 10
1
vote
0 answers

how to Get thick signature using jSignature?

Notes: I tried all questions & answers related this topic. Additionally and I tried related questions and try to solve it but no the success. So please read my question thoroughly. i am using jSignature . i want to Get thick Signature after Draw…
Sumit patel
  • 3,807
  • 9
  • 34
  • 61
1
vote
1 answer

JavaScript - How to customise jsignature functionality?

I am working on a signature capturing plugin named "jsignature" in my project. I want to add it as one of the fields in my form as below. But I don't want to use a click function in the form as well as a textarea in the form. Only changing the…
Sowmya Vejerla
  • 93
  • 1
  • 15
1
vote
0 answers

jSignature on mobile - hiding canvas and then showing blanks sig

Using jSignature, and I'm pulling the image string out of the database (base30). I check what comes out of the database, and do the following: 1. Hide my clear button 2. Show my edit button 3. Import my base 30 data into the jsignature div 4.…
EvilPluto
  • 121
  • 1
  • 6
1
vote
0 answers

Is it possible to display a PIL Image when running a django site locally through manage.py?

I'm trying to save a jSignature image to a django FileField. My form save code, as it stands, is as follows: def save(self, commit=True): instance = super(ApplicationForRetailInstallmentContractForm, self).save(commit=False) signature =…
Swagner
  • 53
  • 8
1
2 3 4