-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimage_manipulator.js
80 lines (68 loc) · 2.04 KB
/
image_manipulator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(function() {
IM = {}
window.processingGradientEffect = false;
IM.gradientRadiusEffect = function(ctx, effect, x, y, radius, totalIncrements, doIncrements, incrementAdjust) {
if(doIncrements === undefined) {
doIncrements = .4 * totalIncrements;
}
if(incrementAdjust === undefined) {
incrementAdjust = 1;
}
if(processingGradientEffect == true) {
console.log("double click, quiting");
return;
}
var effectSmallerCircle = function (i) {
if(i >= doIncrements) {
processingGradientEffect = false;
return;
}
ctx.save()
ctx.beginPath();
ctx.arc(x, y, (totalIncrements - i) / totalIncrements * radius, 2 * Math.PI, false)
ctx.clip();
effect(ctx, function () { ctx.restore(); effectSmallerCircle(i+incrementAdjust);});
}
processingGradientEffect = true;
effectSmallerCircle(0);
}
// amount (-1, 1)
IM.adjustBrightness = function (ctx, amount, callback) {
var P = Pixastic(ctx);
brightness = amount;
contrast = 0;
P["brightness"]({brightness: brightness, contrast: contrast}).done(function() {
console.log("Done Adjusting Brightness");
callback();
}, function(p) {
//progress.style.height = (p * 100) + "%";
});
}
IM.adjustContrast = function (ctx, amount) {
if(processingGradientEffect) {
return;
}
var P = Pixastic(ctx);
brightness = -.5 * amount;
contrast = .6 * amount;
P["brightness"]({brightness: brightness, contrast: contrast}).done(function() {
console.log("Done Adjusting Brightness");
}, function(p) {
//progress.style.height = (p * 100) + "%";
});
}
IM.blur = function (ctx, kernelSize, callback) {
var P = Pixastic(ctx);
P["blur"]({kernelSize: kernelSize}).done(function() {
console.log("Done adding blur");
if(callback !== undefined) {
callback();
} else {
console.log("null callback");
}
}, function(p) {
//progress.style.height = (p * 100) + "%";
});
}
window.IM = IM
})();