����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/form/content/plugins/halfdata-green-forms/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/form/content/plugins/halfdata-green-forms/js/signature_pad.js
/*!
 * Signature Pad v2.3.2
 * https://github.com/szimek/signature_pad
 *
 * Copyright 2017 Szymon Nowak
 * Released under the MIT license
 *
 * The main idea and some parts of the code (e.g. drawing variable width Bézier curve) are taken from:
 * http://corner.squareup.com/2012/07/smoother-signatures.html
 *
 * Implementation of interpolation using cubic Bézier curves is taken from:
 * http://benknowscode.wordpress.com/2012/09/14/path-interpolation-using-cubic-bezier-and-control-point-estimation-in-javascript
 *
 * Algorithm for approximated length of a Bézier curve is taken from:
 * http://www.lemoda.net/maths/bezier-length/index.html
 *
 */

(function (global, factory) {
	typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
	typeof define === 'function' && define.amd ? define(factory) :
	(global.SignaturePad = factory());
}(this, (function () { 'use strict';

function Point(x, y, time) {
  this.x = x;
  this.y = y;
  this.time = time || new Date().getTime();
}

Point.prototype.velocityFrom = function (start) {
  return this.time !== start.time ? this.distanceTo(start) / (this.time - start.time) : 1;
};

Point.prototype.distanceTo = function (start) {
  return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
};

Point.prototype.equals = function (other) {
  return this.x === other.x && this.y === other.y && this.time === other.time;
};

function Bezier(startPoint, control1, control2, endPoint) {
  this.startPoint = startPoint;
  this.control1 = control1;
  this.control2 = control2;
  this.endPoint = endPoint;
}

// Returns approximated length.
Bezier.prototype.length = function () {
  var steps = 10;
  var length = 0;
  var px = void 0;
  var py = void 0;

  for (var i = 0; i <= steps; i += 1) {
	var t = i / steps;
	var cx = this._point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
	var cy = this._point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
	if (i > 0) {
	  var xdiff = cx - px;
	  var ydiff = cy - py;
	  length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
	}
	px = cx;
	py = cy;
  }

  return length;
};

/* eslint-disable no-multi-spaces, space-in-parens */
Bezier.prototype._point = function (t, start, c1, c2, end) {
  return start * (1.0 - t) * (1.0 - t) * (1.0 - t) + 3.0 * c1 * (1.0 - t) * (1.0 - t) * t + 3.0 * c2 * (1.0 - t) * t * t + end * t * t * t;
};

/* eslint-disable */

// http://stackoverflow.com/a/27078401/815507
function throttle(func, wait, options) {
  var context, args, result;
  var timeout = null;
  var previous = 0;
  if (!options) options = {};
  var later = function later() {
	previous = options.leading === false ? 0 : Date.now();
	timeout = null;
	result = func.apply(context, args);
	if (!timeout) context = args = null;
  };
  return function () {
	var now = Date.now();
	if (!previous && options.leading === false) previous = now;
	var remaining = wait - (now - previous);
	context = this;
	args = arguments;
	if (remaining <= 0 || remaining > wait) {
	  if (timeout) {
		clearTimeout(timeout);
		timeout = null;
	  }
	  previous = now;
	  result = func.apply(context, args);
	  if (!timeout) context = args = null;
	} else if (!timeout && options.trailing !== false) {
	  timeout = setTimeout(later, remaining);
	}
	return result;
  };
}

function SignaturePad(canvas, options) {
  var self = this;
  var opts = options || {};

  this.velocityFilterWeight = opts.velocityFilterWeight || 0.7;
  this.minWidth = opts.minWidth || 0.5;
  this.maxWidth = opts.maxWidth || 2.5;
  this.throttle = 'throttle' in opts ? opts.throttle : 16; // in miliseconds
  this.minDistance = 'minDistance' in opts ? opts.minDistance : 5;

  if (this.throttle) {
	this._strokeMoveUpdate = throttle(SignaturePad.prototype._strokeUpdate, this.throttle);
  } else {
	this._strokeMoveUpdate = SignaturePad.prototype._strokeUpdate;
  }

  this.dotSize = opts.dotSize || function () {
	return (this.minWidth + this.maxWidth) / 2;
  };
  this.penColor = opts.penColor || 'black';
  this.backgroundColor = opts.backgroundColor || 'rgba(0,0,0,0)';
  this.onBegin = opts.onBegin;
  this.onEnd = opts.onEnd;

  this._canvas = canvas;
  this._ctx = canvas.getContext('2d');
  this.clear();

  // We need add these inline so they are available to unbind while still having
  // access to 'self' we could use _.bind but it's not worth adding a dependency.
  this._handleMouseDown = function (event) {
	if (event.which === 1) {
	  self._mouseButtonDown = true;
	  self._strokeBegin(event);
	}
  };

  this._handleMouseMove = function (event) {
	if (self._mouseButtonDown) {
	  self._strokeMoveUpdate(event);
	}
  };

  this._handleMouseUp = function (event) {
	if (event.which === 1 && self._mouseButtonDown) {
	  self._mouseButtonDown = false;
	  self._strokeEnd(event);
	}
  };

  this._handleTouchStart = function (event) {
	if (event.targetTouches.length === 1) {
	  var touch = event.changedTouches[0];
	  self._strokeBegin(touch);
	}
  };

  this._handleTouchMove = function (event) {
	// Prevent scrolling.
	event.preventDefault();

	var touch = event.targetTouches[0];
	self._strokeMoveUpdate(touch);
  };

  this._handleTouchEnd = function (event) {
	var wasCanvasTouched = event.target === self._canvas;
	if (wasCanvasTouched) {
	  event.preventDefault();
	  self._strokeEnd(event);
	}
  };

  // Enable mouse and touch event handlers
  this.on();
}

// Public methods
SignaturePad.prototype.clear = function () {
  var ctx = this._ctx;
  var canvas = this._canvas;

  ctx.fillStyle = this.backgroundColor;
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  ctx.fillRect(0, 0, canvas.width, canvas.height);

  this._data = [];
  this._reset();
  this._isEmpty = true;
};

SignaturePad.prototype.toDataURL = function (type) {
	var _canvas;
	_canvas = this._crop();
	if (_canvas == null) return "";
	return _canvas.toDataURL();
};

SignaturePad.prototype.on = function () {
  this._handleMouseEvents();
  this._handleTouchEvents();
};

SignaturePad.prototype.off = function () {
  this._canvas.removeEventListener('mousedown', this._handleMouseDown);
  this._canvas.removeEventListener('mousemove', this._handleMouseMove);
  document.removeEventListener('mouseup', this._handleMouseUp);

  this._canvas.removeEventListener('touchstart', this._handleTouchStart);
  this._canvas.removeEventListener('touchmove', this._handleTouchMove);
  this._canvas.removeEventListener('touchend', this._handleTouchEnd);
};

SignaturePad.prototype.isEmpty = function () {
  return this._isEmpty;
};

// Private methods
SignaturePad.prototype._strokeBegin = function (event) {
  this._data.push([]);
  this._reset();
  this._strokeUpdate(event);

  if (typeof this.onBegin === 'function') {
	this.onBegin(event);
  }
};

SignaturePad.prototype._strokeUpdate = function (event) {
  var x = event.clientX;
  var y = event.clientY;

  var point = this._createPoint(x, y);
  var lastPointGroup = this._data[this._data.length - 1];
  var lastPoint = lastPointGroup && lastPointGroup[lastPointGroup.length - 1];
  var isLastPointTooClose = lastPoint && point.distanceTo(lastPoint) < this.minDistance;

  // Skip this point if it's too close to the previous one
  if (!(lastPoint && isLastPointTooClose)) {
	var _addPoint = this._addPoint(point),
		curve = _addPoint.curve,
		widths = _addPoint.widths;

	if (curve && widths) {
	  this._drawCurve(curve, widths.start, widths.end);
	}

	this._data[this._data.length - 1].push({
	  x: point.x,
	  y: point.y,
	  time: point.time,
	  color: this.penColor
	});
  }
};

SignaturePad.prototype._strokeEnd = function (event) {
  var canDrawCurve = this.points.length > 2;
  var point = this.points[0]; // Point instance

  if (!canDrawCurve && point) {
	this._drawDot(point);
  }

  if (point) {
	var lastPointGroup = this._data[this._data.length - 1];
	var lastPoint = lastPointGroup[lastPointGroup.length - 1]; // plain object

	// When drawing a dot, there's only one point in a group, so without this check
	// such group would end up with exactly the same 2 points.
	if (!point.equals(lastPoint)) {
	  lastPointGroup.push({
		x: point.x,
		y: point.y,
		time: point.time,
		color: this.penColor
	  });
	}
  }

  if (typeof this.onEnd === 'function') {
	this.onEnd(event);
  }
};

SignaturePad.prototype._handleMouseEvents = function () {
  this._mouseButtonDown = false;

  this._canvas.addEventListener('mousedown', this._handleMouseDown);
  this._canvas.addEventListener('mousemove', this._handleMouseMove);
  document.addEventListener('mouseup', this._handleMouseUp);
};

SignaturePad.prototype._handleTouchEvents = function () {
  // Pass touch events to canvas element on mobile IE11 and Edge.
  this._canvas.style.msTouchAction = 'none';
  this._canvas.style.touchAction = 'none';

  this._canvas.addEventListener('touchstart', this._handleTouchStart);
  this._canvas.addEventListener('touchmove', this._handleTouchMove);
  this._canvas.addEventListener('touchend', this._handleTouchEnd);
};

SignaturePad.prototype._reset = function () {
  this.points = [];
  this._lastVelocity = 0;
  this._lastWidth = (this.minWidth + this.maxWidth) / 2;
  this._ctx.fillStyle = this.penColor;
};

SignaturePad.prototype._createPoint = function (x, y, time) {
  var rect = this._canvas.getBoundingClientRect();

  return new Point(x - rect.left, y - rect.top, time || new Date().getTime());
};

SignaturePad.prototype._addPoint = function (point) {
  var points = this.points;
  var tmp = void 0;

  points.push(point);

  if (points.length > 2) {
	// To reduce the initial lag make it work with 3 points
	// by copying the first point to the beginning.
	if (points.length === 3) points.unshift(points[0]);

	tmp = this._calculateCurveControlPoints(points[0], points[1], points[2]);
	var c2 = tmp.c2;
	tmp = this._calculateCurveControlPoints(points[1], points[2], points[3]);
	var c3 = tmp.c1;
	var curve = new Bezier(points[1], c2, c3, points[2]);
	var widths = this._calculateCurveWidths(curve);

	// Remove the first element from the list,
	// so that we always have no more than 4 points in points array.
	points.shift();

	return { curve: curve, widths: widths };
  }

  return {};
};

SignaturePad.prototype._calculateCurveControlPoints = function (s1, s2, s3) {
  var dx1 = s1.x - s2.x;
  var dy1 = s1.y - s2.y;
  var dx2 = s2.x - s3.x;
  var dy2 = s2.y - s3.y;

  var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
  var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };

  var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
  var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);

  var dxm = m1.x - m2.x;
  var dym = m1.y - m2.y;

  var k = l2 / (l1 + l2);
  var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };

  var tx = s2.x - cm.x;
  var ty = s2.y - cm.y;

  return {
	c1: new Point(m1.x + tx, m1.y + ty),
	c2: new Point(m2.x + tx, m2.y + ty)
  };
};

SignaturePad.prototype._calculateCurveWidths = function (curve) {
  var startPoint = curve.startPoint;
  var endPoint = curve.endPoint;
  var widths = { start: null, end: null };

  var velocity = this.velocityFilterWeight * endPoint.velocityFrom(startPoint) + (1 - this.velocityFilterWeight) * this._lastVelocity;

  var newWidth = this._strokeWidth(velocity);

  widths.start = this._lastWidth;
  widths.end = newWidth;

  this._lastVelocity = velocity;
  this._lastWidth = newWidth;

  return widths;
};

SignaturePad.prototype._strokeWidth = function (velocity) {
  return Math.max(this.maxWidth / (velocity + 1), this.minWidth);
};

SignaturePad.prototype._drawPoint = function (x, y, size) {
  var ctx = this._ctx;

  ctx.moveTo(x, y);
  ctx.arc(x, y, size, 0, 2 * Math.PI, false);
  this._isEmpty = false;
};

SignaturePad.prototype._drawCurve = function (curve, startWidth, endWidth) {
  var ctx = this._ctx;
  var widthDelta = endWidth - startWidth;
  var drawSteps = Math.floor(curve.length());

  ctx.beginPath();

  for (var i = 0; i < drawSteps; i += 1) {
	// Calculate the Bezier (x, y) coordinate for this step.
	var t = i / drawSteps;
	var tt = t * t;
	var ttt = tt * t;
	var u = 1 - t;
	var uu = u * u;
	var uuu = uu * u;

	var x = uuu * curve.startPoint.x;
	x += 3 * uu * t * curve.control1.x;
	x += 3 * u * tt * curve.control2.x;
	x += ttt * curve.endPoint.x;

	var y = uuu * curve.startPoint.y;
	y += 3 * uu * t * curve.control1.y;
	y += 3 * u * tt * curve.control2.y;
	y += ttt * curve.endPoint.y;

	var width = startWidth + ttt * widthDelta;
	this._drawPoint(x, y, width);
  }

  ctx.closePath();
  ctx.fill();
};

SignaturePad.prototype._drawDot = function (point) {
  var ctx = this._ctx;
  var width = typeof this.dotSize === 'function' ? this.dotSize() : this.dotSize;

  ctx.beginPath();
  this._drawPoint(point.x, point.y, width);
  ctx.closePath();
  ctx.fill();
};

SignaturePad.prototype._crop = function() {
	var canvas = this._canvas;

	// First duplicate the canvas to not alter the original
	var croppedCanvas = document.createElement('canvas'),
		croppedCtx = croppedCanvas.getContext('2d');

		croppedCanvas.width = canvas.width;
		croppedCanvas.height = canvas.height;
		croppedCtx.drawImage(canvas, 0, 0);

	// Next do the actual cropping
	var w		 = croppedCanvas.width,
		h		 = croppedCanvas.height,
		pix	   = {x:[], y:[]},
		imageData = croppedCtx.getImageData(0,0,croppedCanvas.width,croppedCanvas.height),
		x, y, index;

	for (y = 0; y < h; y++) {
		for (x = 0; x < w; x++) {
			index = (y * w + x) * 4;
			if (imageData.data[index+3] > 0) {
				pix.x.push(x);
				pix.y.push(y);

			}
		}
	}
	pix.x.sort(function(a,b){return a-b});
	pix.y.sort(function(a,b){return a-b});
	var n = pix.x.length-1;

	if (n == -1) return null;

	w = pix.x[n] - pix.x[0];
	h = pix.y[n] - pix.y[0];
	
	var cut = croppedCtx.getImageData(pix.x[0], pix.y[0], w, h);

	croppedCanvas.width = w;
	croppedCanvas.height = h;
	croppedCtx.putImageData(cut, 0, 0);

	return croppedCanvas;
};

return SignaturePad;

})));

ZeroDay Forums Mini