今天用Jquery的jSignature库制作一个电子签名 后台.net core上传到指定文件夹

下载jquery库 提取码:rd9g

html

@{
Layout = null;
} <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="initial-scale=1.0, target-densitydpi=device-dpi" /><!-- this is for mobile (Android) Chrome -->
<meta name="viewport" content="initial-scale=1.0, width=device-height"><!-- mobile Safari, FireFox, Opera Mobile -->
<script src="~/lib/jSignature-master/libs/modernizr.js"></script>
<!--[if lt IE ]>
<script type="text/javascript" src="libs/flashcanvas.js"></script>
<![endif]-->
<style type="text/css"> div {
margin-top: 1em;
margin-bottom: 1em;
} input {
padding: .5em;
margin: .5em;
} select {
padding: .5em;
margin: .5em;
} #signatureparent {
color: darkblue;
background-color: darkgrey;
/*max-width:600px;*/
padding: 20px;
} /*This is the div within which the signature canvas is fitted*/
#signature {
border: 2px dotted black;
background-color: lightgrey;
} /* Drawing the 'gripper' for touch-enabled devices */
html.touch #content {
float: left;
width: %;
} html.touch #scrollgrabber {
float: right;
width: %;
margin-right: %;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAFCAAAAACh79lDAAAAAXNSR0IArs4c6QAAABJJREFUCB1jmMmQxjCT4T/DfwAPLgOXlrt3IwAAAABJRU5ErkJggg==)
} html.borderradius #scrollgrabber {
border-radius: 1em;
}
</style>
</head>
<body>
<div>
<div id="content">
<input type="button" value="上传" onclick="add()" />
<div id="signatureparent">
<div>jSignature inherits colors from parent element. Text = Pen color. Background = Background. (This works even when Flash-based Canvas emulation is used.)</div>
<div id="signature"></div>
</div>
<div id="tools"></div>
<div><p>Display Area:</p><div id="displayarea"></div></div>
</div>
<div id="scrollgrabber"></div>
</div>
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
<script type="text/javascript">
jQuery.noConflict()
</script>
<script>
@*/* @preserve
jQuery pub/sub plugin by Peter Higgins (dante@dojotoolkit.org)
Loosely based on Dojo publish/subscribe API, limited in scope. Rewritten blindly.
Original is (c) Dojo Foundation 2004-2010. Released under either AFL or new BSD, see:
http://dojofoundation.org/license for more information.
*/*@
(function($) {
var topics = {};
$.publish = function(topic, args) {
if (topics[topic]) {
var currentTopic = topics[topic],
args = args || {}; for (var i = , j = currentTopic.length; i < j; i++) {
currentTopic[i].call($, args);
}
}
};
$.subscribe = function(topic, callback) {
if (!topics[topic]) {
topics[topic] = [];
}
topics[topic].push(callback);
return {
"topic": topic,
"callback": callback
};
};
$.unsubscribe = function(handle) {
var topic = handle.topic;
if (topics[topic]) {
var currentTopic = topics[topic]; for (var i = , j = currentTopic.length; i < j; i++) {
if (currentTopic[i] === handle.callback) {
currentTopic.splice(i, );
}
}
}
};
})(jQuery); </script>
<script src="~/lib/jSignature-master/libs/jSignature.min.noconflict.js"></script>
<script>
(function ($) { $(document).ready(function () { // This is the part where jSignature is initialized.
var $sigdiv = $("#signature").jSignature({ 'UndoButton': true }) // All the code below is just code driving the demo.
, $tools = $('#tools')
, $extraarea = $('#displayarea')
, pubsubprefix = 'jSignature.demo.' var export_plugins = $sigdiv.jSignature('listPlugins', 'export')
, chops = ['<span><b>提取签名数据: </b></span><select>', '<option value="">(select export format)</option>']
, name
for (var i in export_plugins) {
if (export_plugins.hasOwnProperty(i)) {
name = export_plugins[i]
chops.push('<option value="' + name + '">' + name + '</option>')
}
}
chops.push('</select><span><b> or: </b></span>') $(chops.join('')).bind('change', function (e) {
if (e.target.value !== '') {
var data = $sigdiv.jSignature('getData', e.target.value)
$.publish(pubsubprefix + 'formatchanged')
if (typeof data === 'string') {
$('textarea', $tools).val(data)
} else if ($.isArray(data) && data.length === ) {
$('textarea', $tools).val(data.join(','))
$.publish(pubsubprefix + data[], data);
} else {
try {
$('textarea', $tools).val(JSON.stringify(data))
} catch (ex) {
$('textarea', $tools).val('Not sure how to stringify this, likely binary, format.')
}
}
}
}).appendTo($tools) $('<input type="button" value="Reset">').bind('click', function (e) {
$sigdiv.jSignature('reset')
}).appendTo($tools) $('<div><textarea style="width:100%;height:7em;"></textarea></div>').appendTo($tools) $.subscribe(pubsubprefix + 'formatchanged', function () {
$extraarea.html('')
}) $.subscribe(pubsubprefix + 'image/svg+xml', function (data) { try {
var i = new Image()
i.src = 'data:' + data[] + ';base64,' + btoa(data[])
$(i).appendTo($extraarea)
} catch (ex) { } var message = [
"If you don't see an image immediately above, it means your browser is unable to display in-line (data-url-formatted) SVG."
, "This is NOT an issue with jSignature, as we can export proper SVG document regardless of browser's ability to display it."
, "Try this page in a modern browser to see the SVG on the page, or export data as plain SVG, save to disk as text file and view in any SVG-capabale viewer."
]
$("<div>" + message.join("<br/>") + "</div>").appendTo($extraarea)
}); $.subscribe(pubsubprefix + 'image/svg+xml;base64', function (data) {
var i = new Image()
i.src = 'data:' + data[] + ',' + data[]
$(i).appendTo($extraarea) var message = [
"If you don't see an image immediately above, it means your browser is unable to display in-line (data-url-formatted) SVG."
, "This is NOT an issue with jSignature, as we can export proper SVG document regardless of browser's ability to display it."
, "Try this page in a modern browser to see the SVG on the page, or export data as plain SVG, save to disk as text file and view in any SVG-capabale viewer."
]
$("<div>" + message.join("<br/>") + "</div>").appendTo($extraarea)
}); $.subscribe(pubsubprefix + 'image/png;base64', function (data) {
var i = new Image()
i.src = 'data:' + data[] + ',' + data[]
$('<span><b>As you can see, one of the problems of "image" extraction (besides not working on some old Androids, elsewhere) is that it extracts A LOT OF DATA and includes all the decoration that is not part of the signature.</b></span>').appendTo($extraarea)
$(i).appendTo($extraarea) var datapair = $sigdiv.jSignature("getData", "image");
var len = $sigdiv.jSignature('getData', 'native').length;
if (len > ) {
$.post(
"/Test/UploadSignature?dt=" + new Date(),
{
imgData: datapair[]
}, function (res) {
if (res.success) {
alert('上传成功!');
} else {
alert(res.message);
}
}
)
}
else {
alert("请先签名")
} }); $.subscribe(pubsubprefix + 'image/jsignature;base30', function (data) {
$('<span><b>This is a vector format not natively render-able by browsers. Format is a compressed "movement coordinates arrays" structure tuned for use server-side. The bonus of this format is its tiny storage footprint and ease of deriving rendering instructions in programmatic, iterative manner.</b></span>').appendTo($extraarea)
}); if (Modernizr.touch) {
$('#scrollgrabber').height($('#content').height())
} }) })(jQuery) </script>
</body>
</html>

控制器

 [HttpPost]
public async Task<IActionResult> UploadSignature()
{
string imgData = HttpContext.Request.Form["imgData"].ToString();
var result = new Dictionary<string, object>();
bool Success = false;
string Message = "";
try
{
var dir = @"./wwwroot/Signature/";
if (!Directory.Exists(dir))
Directory.CreateDirectory(dir); var fileName = Guid.NewGuid(); var path = dir + fileName + ".jpg"; //using (var fileStream = new FileStream(path, FileMode.Create))
//{
// await file.CopyToAsync(fileStream);
// await fileStream.FlushAsync();
//} byte[] arr = Convert.FromBase64String(imgData);
MemoryStream ms = new MemoryStream(arr);
await ms.FlushAsync();
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(ms);
bmp.Save(path, System.Drawing.Imaging.ImageFormat.Jpeg);
ms.Close();
Success = true;
Message = path.Replace("./wwwroot", string.Empty);
}
catch (Exception ex)
{
Success = false;
Message = ex.Message;
}
result.Add("success", Success);
result.Add("message", Message);
return Json(result);
}

Jquery电子签名制作_jSignature的更多相关文章

  1. 使用 jQuery & CSS3 制作美丽的照片画廊

    在本教程中,我们将创建一个很好看的照片画廊效果.我们的想法是,以显示专辑作为一个滑块,而当这张专辑被选中,我们将使用一个美丽的照片堆栈展示专辑的图像.在照片堆栈视图,我们可以通过将最上面的图像移动到所 ...

  2. 学习使用 jQuery & CSS3 制作照片堆栈效果

    在这个小实验中,我们使用 jQuery & CSS3 创建了一个交互式的照片堆栈效果.提供了一些模拟现实的互动的可能性给用户.这个想法的思路是:有一些照片在桌面上可以拖放一样,堆放和删除,每个 ...

  3. jQuery & CSS 制作金属质感的选择按钮

    如果能把 CSS 运用好,我们创作出好的交互和效果的可能性大大增加.这篇文章中,我想与大家分享一组结合 jQuery & CSS 制作的充满金属质感的选择框效果,绝对是超级精美的效果. 在线演 ...

  4. 酷!使用 jQuery & Canvas 制作相机快门效果

    在今天的教程中,我们将使用 HTML5 的 Canvas 元素来创建一个简单的摄影作品集,它显示了一组精选照片与相机快门的效果.此功能会以一个简单的 jQuery 插件形式使用,你可以很容易地整合到任 ...

  5. jQuery手风琴制作

    jQuery手风琴制作 说起手风琴,想必大家应该都知道吧,简单的来说就是可以来回收缩的这么一个东西,接下来,我就给大家演示一下用jQuery制作一个手风琴菜单! 写jQuery前,我们需要引用一个jQ ...

  6. JQuery插件制作动态网页

    运用JQuery插件制作动态网页   前  言 JQuery 今天我给大家介绍一个运用JQuery插件制作的动态网页--iphone 5C 宣传页面.这个网页中运用到了fullpage.js和move ...

  7. jQuery插件制作之全局函数用法实例

    原文地址:http://www.jb51.net/article/67056.htm 本文实例讲述了jQuery插件制作之全局函数用法.分享给大家供大家参考.具体分析如下: 1.添加新的全局函数 所谓 ...

  8. jQuery插件制作方法详解

        jQuery插件制作方法详解   jquery插件给我的感觉清一色的清洁,简单.如Jtip,要使用它的功能,只需要在你的元素的class上加 上Jtip,并引入jtip.js及其样式即可以了. ...

  9. Jquery.Treeview+Jquery UI制作Web文件预览

    效果图: 前台Html: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="D ...

随机推荐

  1. 关于scipy包的安装

    先安装好scikit-learn和numpy,从网上下载scipy的whl文件,通过pip install+安装包地址的方法安装

  2. canvas.toDataURL 由于跨域报错的解决方法

    关于canvas.toDataURL 由于跨域报错的解决方法 用过canvas,都知道toDataURL这个方法真好用,不仅合成图片用到它,压缩图片也用到它.但有一个问题,就是图片源不能跨域,不然会报 ...

  3. H3C RIPv1的缺点

  4. linux scull 代码write 方法

    write, 象 read, 可以传送少于要求的数据, 根据返回值的下列规则: 如果值等于 count, 要求的字节数已被传送. 如果正值, 但是小于 count, 只有部分数据被传送. 程序最可能重 ...

  5. JOISC2014 Day2 E "交朋友" (思维+假的SCC)

    传送门 题目描述 你是活跃在历史幕后的一名特工,为了世界和平而夜以继日地努力着. 这个世界有N个国家,编号为1..N; 你的目的是在这N个国家之间建立尽可能多的友好关系. 你为了制定一个特工工作的计划 ...

  6. linux 处理器特定的寄存器

    如果你需要测量非常短时间间隔, 或者你需要非常高精度, 你可以借助平台依赖的资源, 一个要精度不要移植性的选择. 在现代处理器中, 对于经验性能数字的迫切需求被大部分 CPU 设计中内在的指令定时不 ...

  7. $51nod\ 1522$ 上下序列 $dp$

    正解:$dp$ 解题报告: 传送门$QwQ$ 一年过去了$gql$还是不咋会这题,,,好菜昂我的$NOIp$必将惨败了$kk$ 考虑从大到小枚举两个相同的数填哪儿,根据那个限制,十分显然的是这两个数必 ...

  8. SqlBulkCopy批量插入和索引的关系

    .net中批量插入基本都用SqlBulkCopy,速度很快,但是这几天发现个问题,2000数据居然15s,百思不得其解.经过大量测试,发现过多的索引和索引碎片会严重影响插入速度,表的数据量大小反而不会 ...

  9. 彻底掌握CORS跨源资源共享

    本文来自于公众号链接: 彻底掌握CORS跨源资源共享 ) 本文接上篇公众号文章:彻底理解浏览器同源策略SOP 一.概述 在云时代,各种SAAS应用层出不穷,各种互联网API接口越来越丰富,H5技术在微 ...

  10. maven中scope标签各个值的意义

    在使用maven配置时,有时候会见到scope这个标签,但是总是记不住他们所对应的含义,现在整理一下,以后忘记了再来查看. 版权声明:本文为CSDN博主「MrZhangBaby」的原创文章,遵循 CC ...