Hướng dẫn tạo chữ ký bằng jsignature
Click link bên dưới đễ xem demo và nhấn view source của trình duyệt đễ xem mã nguồn
Xem demo
Để export ra file ảnh. Nếu dùng java thì xem ví dụ mẫu dưới đây:
String content = IMAGE_BASE64; //là tấm ảnh được tạo ra lúc sumbit chữ kí, format của nó là base 64.
if (content.indexOf("base64") != -1) {
content = content.substring(content.indexOf("base64") + 7,
content.length());
}
byte[] bytearray = org.apache.commons.codec.binary.Base64.decodeBase64(content.getBytes());
BufferedImage imag = ImageIO.read(new ByteArrayInputStream(bytearray));
File imageFile = new File("D:\\test.png");
ImageIO.write(imag, "png", imageFile);
|