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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337 | 2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
| Eif (process.env.ENVIRONMENT !== "BROWSER") var FS = require("fs");
var PNG = require("pngjs").PNG;
var JPEG = require("jpeg-js");
var BMP = require("bmp-js");
var MIME = require("mime");
var TinyColor = require("tinycolor2");
var Resize = require("./resize.js");
var Resize2 = require("./resize2.js");
var StreamToBuffer = require("stream-to-buffer");
var ReadChunk = require("read-chunk");
var FileType = require("file-type");
var PixelMatch = require("pixelmatch");
var EXIFParser = require("exif-parser");
var ImagePHash = require("./phash.js");
var BigNumber = require('bignumber.js');
var URLRegEx = require("url-regex");
var BMFont = require("load-bmfont");
var Path = require("path");
Eif (process.env.ENVIRONMENT !== "BROWSER") {
//If we run into electron renderer process, use XHR method instead of Request node module
Iif (process.versions.hasOwnProperty('electron') && process.type === 'renderer' && typeof XMLHttpRequest === "function") {
var Request = function (url,cb) {
var xhr = new XMLHttpRequest();
xhr.open( "GET", url, true );
xhr.responseType = "arraybuffer";
xhr.onload = function() {
if (xhr.status < 400) {
try {
var data = Buffer.from(this.response);
} catch (e) {
return cb("Response is not a buffer for url "+url)
}
cb(null, xhr, data);
}
else cb("HTTP Status " + xhr.status + " for url "+url);
};
xhr.onerror = function(e) {
cb(e);
};
xhr.send();
};
} else {
var Request = require('request').defaults({ encoding: null });
}
}
// polyfill Promise for Node < 0.12
var Promise = global.Promise || require('es6-promise').Promise;
// logging methods
var chars = 0;
function log(msg) {
clear();
process.stdout.write(msg);
chars = msg.length;
}
function clear() {
while (chars-- > 0) {
process.stdout.write("\b");
}
}
process.on("exit", clear);
// no operation
function noop(){};
// error checking methods
function isNodePattern(cb) {
if ("undefined" == typeof cb) return false;
if ("function" != typeof cb)
throw new Error("Callback must be a function");
return true;
}
function throwError(error, cb) {
if ("string" == typeof error) error = new Error(error);
if ("function" == typeof cb) return cb.call(this, error);
else throw error;
}
/**
* Jimp constructor (from a file)
* @param path a path to the image
* @param (optional) cb a function to call when the image is parsed to a bitmap
*/
/**
* Jimp constructor (from another Jimp image)
* @param image a Jimp image to clone
* @param cb a function to call when the image is parsed to a bitmap
*/
/**
* Jimp constructor (from a Buffer)
* @param data a Buffer containing the image data
* @param cb a function to call when the image is parsed to a bitmap
*/
/**
* Jimp constructor (to generate a new image)
* @param w the width of the image
* @param h the height of the image
* @param (optional) cb a function to call when the image is parsed to a bitmap
*/
function Jimp() {
if ("number" == typeof arguments[0] && "number" == typeof arguments[1]) {
// create a new image
var w = arguments[0];
var h = arguments[1];
var cb = arguments[2];
if ("number" == typeof arguments[2]) {
this._background = arguments[2];
var cb = arguments[3];
}
if ("undefined" == typeof cb) cb = noop;
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
this.bitmap = {
data: new Buffer(w * h * 4),
width: w,
height: h
};
for (var i = 0; i < this.bitmap.data.length; i=i+4) {
this.bitmap.data.writeUInt32BE(this._background, i);
}
cb.call(this, null, this);
} else if ("object" == typeof arguments[0] && arguments[0].constructor == Jimp) {
// clone an existing Jimp
var original = arguments[0];
var cb = arguments[1];
if ("undefined" == typeof cb) cb = noop;
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
var bitmap = new Buffer(original.bitmap.data.length);
original.scan(0, 0, original.bitmap.width, original.bitmap.height, function (x, y, idx) {
var data = original.bitmap.data.readUInt32BE(idx, true);
bitmap.writeUInt32BE(data, idx, true);
});
this.bitmap = {
data: bitmap,
width: original.bitmap.width,
height: original.bitmap.height
};
this._quality = original._quality;
this._deflateLevel = original._deflateLevel;
this._deflateStrategy = original._deflateStrategy;
this._filterType = original._filterType;
this._rgba = original._rgba;
this._background = original._background;
cb.call(this, null, this);
} else if (URLRegEx({exact: true}).test(arguments[0])) {
// read from a URL
var url = arguments[0];
var cb = arguments[1];
if ("undefined" == typeof cb) cb = noop;
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
var that = this;
Request(url, function (err, response, data) {
if (err) return throwError.call(that, err, cb);
if ("object" == typeof data && Buffer.isBuffer(data)) {
var mime = getMIMEFromBuffer(data);
if ("string" != typeof mime)
return throwError.call(that, "Could not find MIME for Buffer <" + url + "> (HTTP: " + response.statusCode + ")", cb);
parseBitmap.call(that, data, mime, cb);
} else return throwError.call(that, "Could not load Buffer from URL <" + url + "> (HTTP: " + response.statusCode + ")", cb);
});
} else if ("string" == typeof arguments[0]) {
// read from a path
var path = arguments[0];
var cb = arguments[1];
if ("undefined" == typeof cb) cb = noop;
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
var that = this;
getMIMEFromPath(path, function (err, mime) {
FS.readFile(path, function (err, data) {
if (err) return throwError.call(that, err, cb);
parseBitmap.call(that, data, mime, cb);
});
});
} else if ("object" == typeof arguments[0]) {
// read from a buffer
var data = arguments[0];
var mime = getMIMEFromBuffer(data);
var cb = arguments[1];
if (!Buffer.isBuffer(data))
return throwError.call(this, "data must be a Buffer", cb);
if ("string" != typeof mime)
return throwError.call(this, "mime must be a string", cb);
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
parseBitmap.call(this, data, mime, cb);
} else {
return throwError.call(this, "No matching constructor overloading was found. Please see the docs for how to call the Jimp constructor.", cb);
}
}
/**
* Read an image from a file or a Buffer
* @param src the path to the file or a Buffer containing the file data
* @param cb (optional) a callback function when the file is read
* @retuns a promise
*/
Jimp.read = function(src, cb) {
var promise = new Promise(
function(resolve, reject) {
cb = cb || function(err, image) {
if (err) reject(err);
else resolve(image);
}
if ("string" != typeof src && ("object" != typeof src || !Buffer.isBuffer(src)))
return throwError.call(this, "src must be a string or a Buffer", cb);
var img = new Jimp(src, cb);
}
);
return promise;
}
// MIME type methods
function getMIMEFromBuffer(buffer, path) {
var fileTypeFromBuffer = FileType(buffer);
if (fileTypeFromBuffer) {
// If FileType returns something for buffer, then return the mime given
return fileTypeFromBuffer.mime;
}
else if (path) {
// If a path is supplied, and FileType yields no results, then retry with MIME
// Path can be either a file path or a url
return MIME.lookup(path)
} else {
return null;
}
}
// gets a MIME type of a file from the path to it
function getMIMEFromPath(path, cb) {
ReadChunk(path, 0, 262, function (err, buffer) {
if (err) {
cb(null, "");
} else {
var fileType = FileType(buffer);
return cb && cb(null, fileType && fileType.mime || "");
}
});
}
//=> {ext: 'png', mime: 'image/png'}
// parses a bitmap from the constructor to the JIMP bitmap property
function parseBitmap(data, mime, cb) {
var that = this;
this._originalMime = mime;
switch (mime.toLowerCase()) {
case Jimp.MIME_PNG:
var png = new PNG();
png.parse(data, function(err, data) {
if (err) return throwError.call(that, err, cb);
that.bitmap = {
data: new Buffer(data.data),
width: data.width,
height: data.height
};
return cb.call(that, null, that);
});
break;
case Jimp.MIME_JPEG:
try {
this.bitmap = JPEG.decode(data);
exifRotate(this, data); // EXIF data
return cb.call(this, null, this);
} catch(err) {
return cb.call(this, err, this);
}
case Jimp.MIME_BMP:
this.bitmap = BMP.decode(data);
return cb.call(this, null, this);
default:
return throwError.call(this, "Unsupported MIME type: " + mime, cb);
}
}
/*
* Automagically rotates a JPEG image based on its EXIF data
* @params image a Jimp image
* @params buffer a buffer array of the raw JPEG data
* @returns nothing
*/
function exifRotate(image, buffer) {
var exif;
try {
exif = EXIFParser.create(buffer).parse();
} catch (err) {
return; // meh
}
if (!exif || !exif.tags || !exif.tags.Orientation) return;
switch (exif.tags.Orientation) {
case 1: // Horizontal (normal)
// do nothing
break;
case 2: // Mirror horizontal
image.mirror(true, false);
break;
case 3: // Rotate 180
image.rotate(180);
break;
case 4: // Mirror vertical
image.mirror(false, true);
break;
case 5: // Mirror horizontal and rotate 270 CW
image.mirror(true, false).rotate(270);
break;
case 6: // Rotate 90 CW
image.rotate(90);
break;
case 7: // Mirror horizontal and rotate 90 CW
image.mirror(true, false).rotate(90);
break;
case 8: // Rotate 270 CW
image.rotate(270);
break;
}
}
// used to auto resizing etc.
Jimp.AUTO = -1;
// supported mime types
Jimp.MIME_PNG = "image/png";
Jimp.MIME_JPEG = "image/jpeg";
Jimp.MIME_BMP = "image/bmp";
// PNG filter types
Jimp.PNG_FILTER_AUTO = -1;
Jimp.PNG_FILTER_NONE = 0;
Jimp.PNG_FILTER_SUB = 1;
Jimp.PNG_FILTER_UP = 2;
Jimp.PNG_FILTER_AVERAGE = 3;
Jimp.PNG_FILTER_PAETH = 4;
Jimp.RESIZE_NEAREST_NEIGHBOR = 'nearestNeighbor';
Jimp.RESIZE_BILINEAR = 'bilinearInterpolation';
Jimp.RESIZE_BICUBIC = 'bicubicInterpolation';
Jimp.RESIZE_HERMITE = 'hermiteInterpolation';
Jimp.RESIZE_BEZIER = 'bezierInterpolation';
// Align modes for cover, contain, bit masks
Jimp.HORIZONTAL_ALIGN_LEFT = 1;
Jimp.HORIZONTAL_ALIGN_CENTER = 2;
Jimp.HORIZONTAL_ALIGN_RIGHT = 4;
Jimp.VERTICAL_ALIGN_TOP = 8;
Jimp.VERTICAL_ALIGN_MIDDLE = 16;
Jimp.VERTICAL_ALIGN_BOTTOM = 32;
// Font locations
Jimp.FONT_SANS_8_BLACK = Path.join(__dirname, "fonts/open-sans/open-sans-8-black/open-sans-8-black.fnt");
Jimp.FONT_SANS_16_BLACK = Path.join(__dirname, "fonts/open-sans/open-sans-16-black/open-sans-16-black.fnt");
Jimp.FONT_SANS_32_BLACK = Path.join(__dirname, "fonts/open-sans/open-sans-32-black/open-sans-32-black.fnt");
Jimp.FONT_SANS_64_BLACK = Path.join(__dirname, "fonts/open-sans/open-sans-64-black/open-sans-64-black.fnt");
Jimp.FONT_SANS_128_BLACK = Path.join(__dirname, "fonts/open-sans/open-sans-128-black/open-sans-128-black.fnt");
Jimp.FONT_SANS_8_WHITE = Path.join(__dirname, "fonts/open-sans/open-sans-8-white/open-sans-8-white.fnt");
Jimp.FONT_SANS_16_WHITE = Path.join(__dirname, "fonts/open-sans/open-sans-16-white/open-sans-16-white.fnt");
Jimp.FONT_SANS_32_WHITE = Path.join(__dirname, "fonts/open-sans/open-sans-32-white/open-sans-32-white.fnt");
Jimp.FONT_SANS_64_WHITE = Path.join(__dirname, "fonts/open-sans/open-sans-64-white/open-sans-64-white.fnt");
Jimp.FONT_SANS_128_WHITE = Path.join(__dirname, "fonts/open-sans/open-sans-128-white/open-sans-128-white.fnt");
/**
* A static helper method that converts RGBA values to a single integer value
* @param r the red value (0-255)
* @param g the green value (0-255)
* @param b the blue value (0-255)
* @param a the alpha value (0-255)
* @param cb (optional) A callback for when complete
* @returns an single integer colour value
*/
Jimp.rgbaToInt = function(r, g, b, a, cb){
if ("number" != typeof r || "number" != typeof g || "number" != typeof b || "number" != typeof a)
return throwError.call(this, "r, g, b and a must be numbers", cb);
if (r < 0 || r > 255)
return throwError.call(this, "r must be between 0 and 255", cb);
if (g < 0 || g > 255)
throwError.call(this, "g must be between 0 and 255", cb);
if (b < 0 || b > 255)
return throwError.call(this, "b must be between 0 and 255", cb);
if (a < 0 || a > 255)
return throwError.call(this, "a must be between 0 and 255", cb);
var i = (r * Math.pow(256, 3)) + (g * Math.pow(256, 2)) + (b * Math.pow(256, 1)) + (a * Math.pow(256, 0));
if (isNodePattern(cb)) return cb.call(this, null, i);
else return i;
}
/**
* A static helper method that converts RGBA values to a single integer value
* @param i a single integer value representing an RGBA colour (e.g. 0xFF0000FF for red)
* @param cb (optional) A callback for when complete
* @returns an object with the properties r, g, b and a representing RGBA values
*/
Jimp.intToRGBA = function(i, cb){
if ("number" != typeof i)
return throwError.call(this, "i must be a number", cb);
var rgba = {}
rgba.r = Math.floor(i / Math.pow(256, 3));
rgba.g = Math.floor((i - (rgba.r * Math.pow(256, 3))) / Math.pow(256, 2));
rgba.b = Math.floor((i - (rgba.r * Math.pow(256, 3)) - (rgba.g * Math.pow(256, 2))) / Math.pow(256, 1));
rgba.a = Math.floor((i - (rgba.r * Math.pow(256, 3)) - (rgba.g * Math.pow(256, 2)) - (rgba.b * Math.pow(256, 1))) / Math.pow(256, 0));
if (isNodePattern(cb)) return cb.call(this, null, rgba);
else return rgba;
}
/**
* Limits a number to between 0 or 255
* @param n a number
* @returns the number limited to between 0 or 255
*/
Jimp.limit255 = function(n) {
n = Math.max(n, 0);
n = Math.min(n, 255);
return n;
}
/**
* Diffs two images and returns
* @param img1 a Jimp image to compare
* @param img2 a Jimp image to compare
* @param (optional) threshold a number, 0 to 1, the smaller the value the more sensitive the comparison (default: 0.1)
* @returns an object { percent: percent similar, diff: a Jimp image highlighting differences }
*/
Jimp.diff = function (img1, img2, threshold) {
if ("object" != typeof img1 || img1.constructor != Jimp || "object" != typeof img2 || img2.constructor != Jimp)
return throwError.call(this, "img1 and img2 must be an Jimp images");
if (img1.bitmap.width != img2.bitmap.width || img1.bitmap.height != img2.bitmap.height) {
switch (img1.bitmap.width * img1.bitmap.height > img2.bitmap.width * img2.bitmap.height) {
case true: // img1 is bigger
img1 = img1.clone().resize(img2.bitmap.width, img2.bitmap.height);
break;
default:
// img2 is bigger (or they are the same in area)
img2 = img2.clone().resize(img1.bitmap.width, img1.bitmap.height);
break;
}
}
threshold = threshold || 0.1;
if ("number" != typeof threshold || threshold < 0 || threshold > 1)
return throwError.call(this, "threshold must be a number between 0 and 1");
var diff = new Jimp(img1.bitmap.width, img1.bitmap.height, 0xFFFFFFFF);
var numDiffPixels = PixelMatch(
img1.bitmap.data,
img2.bitmap.data,
diff.bitmap.data,
diff.bitmap.width,
diff.bitmap.height,
{threshold: threshold}
);
return {
percent: numDiffPixels / (diff.bitmap.width * diff.bitmap.height),
image: diff
};
}
/**
* Calculates the hamming distance of two images based on their perceptual hash
* @param img1 a Jimp image to compare
* @param img2 a Jimp image to compare
* @returns a number ranging from 0 to 1, 0 means they are believed to be identical
*/
Jimp.distance = function (img1, img2) {
var phash = new ImagePHash();
var hash1 = phash.getHash(img1);
var hash2 = phash.getHash(img2);
return phash.distance(hash1, hash2);
}
// An object representing a bitmap in memory, comprising:
// - data: a buffer of the bitmap data
// - width: the width of the image in pixels
// - height: the height of the image in pixels
Jimp.prototype.bitmap = {
data: null,
width: null,
height: null
};
// The quality to be used when saving JPEG images
Jimp.prototype._quality = 100;
Jimp.prototype._deflateLevel = 9;
Jimp.prototype._deflateStrategy = 3;
Jimp.prototype._filterType = Jimp.PNG_FILTER_AUTO;
// Whether PNGs will be exported as RGB or RGBA
Jimp.prototype._rgba = true;
// Default colour to use for new pixels
Jimp.prototype._background = 0x00000000;
/**
* Creates a new image that is a clone of this one.
* @param cb (optional) A callback for when complete
* @returns the new image
*/
Jimp.prototype.clone = function (cb) {
var clone = new Jimp(this);
if (isNodePattern(cb)) return cb.call(clone, null, clone);
else return clone;
};
/**
* Sets the quality of the image when saving as JPEG format (default is 100)
* @param n The quality to use 0-100
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.quality = function (n, cb) {
if ("number" != typeof n)
return throwError.call(this, "n must be a number", cb);
if (n < 0 || n > 100)
return throwError.call(this, "n must be a number 0 - 100", cb);
this._quality = Math.round(n);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Sets the deflate level used when saving as PNG format (default is 9)
* @param l Deflate level to use 0-9. 0 is no compression. 9 (default) is maximum compression.
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.deflateLevel = function (l, cb) {
if ("number" != typeof l)
return throwError.call(this, "l must be a number", cb);
if (l < 0 || l > 9)
return throwError.call(this, "l must be a number 0 - 9", cb);
this._deflateLevel = Math.round(l);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Sets the deflate strategy used when saving as PNG format (default is 3)
* @param s Deflate strategy to use 0-3.
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.deflateStrategy = function (s, cb) {
if ("number" != typeof s)
return throwError.call(this, "s must be a number", cb);
if (s < 0 || s > 3)
return throwError.call(this, "s must be a number 0 - 3", cb);
this._deflateStrategy = Math.round(s);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Sets the filter type used when saving as PNG format (default is automatic filters)
* @param f The quality to use -1-4.
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.filterType = function (f, cb) {
if ("number" != typeof f)
return throwError.call(this, "n must be a number", cb);
if (f < -1 || f > 4)
return throwError.call(this, "n must be -1 (auto) or a number 0 - 4", cb);
this._filterType = Math.round(f);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Sets the type of the image (RGB or RGBA) when saving as PNG format (default is RGBA)
* @param bool A Boolean, true to use RGBA or false to use RGB
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.rgba = function (bool, cb) {
if ("boolean" != typeof bool)
return throwError.call(this, "bool must be a boolean, true for RGBA or false for RGB", cb);
this._rgba = bool;
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Sets the type of the image (RGB or RGBA) when saving as PNG format (default is RGBA)
* @param b A Boolean, true to use RGBA or false to use RGB
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.background = function (hex, cb) {
if ("number" != typeof hex)
return throwError.call(this, "hex must be a hexadecimal rgba value", cb);
this._background = hex;
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Scanes through a region of the bitmap, calling a function for each pixel.
* @param x the x coordinate to begin the scan at
* @param y the y coordiante to begin the scan at
* @param w the width of the scan region
* @param h the height of the scan region
* @param f a function to call on even pixel; the (x, y) position of the pixel
* and the index of the pixel in the bitmap buffer are passed to the function
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.scan = function (x, y, w, h, f, cb) {
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
if ("function" != typeof f)
return throwError.call(this, "f must be a function", cb);
// round input
x = Math.round(x);
y = Math.round(y);
w = Math.round(w);
h = Math.round(h);
for (var _y = y; _y < (y + h); _y++) {
for (var _x = x; _x < (x + w); _x++) {
var idx = (this.bitmap.width * _y + _x) << 2;
f.call(this, _x, _y, idx);
}
}
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Returns the offset of a pixel in the bitmap buffer
* @param x the x coordinate
* @param y the y coordinate
* @param (optional) cb a callback for when complete
* @returns the index of the pixel or -1 if not found
*/
Jimp.prototype.getPixelIndex = function (x, y, cb) {
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
var i = (this.bitmap.width * y + x) << 2;
// if out of bounds index is -1
if (x < 0 || x > this.bitmap.width) i = -1;
if (y < 0 || y > this.bitmap.height) i = -1;
if (isNodePattern(cb)) return cb.call(this, null, i);
else return i;
};
/**
* Returns the hex colour value of a pixel
* @param x the x coordinate
* @param y the y coordinate
* @param (optional) cb a callback for when complete
* @returns the index of the pixel or -1 if not found
*/
Jimp.prototype.getPixelColor = Jimp.prototype.getPixelColour = function (x, y, cb) {
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
var idx = this.getPixelIndex(x, y);
var hex = this.bitmap.data.readUInt32BE(idx);
if (isNodePattern(cb)) return cb.call(this, null, hex);
else return hex;
};
/**
* Returns the hex colour value of a pixel
* @param x the x coordinate
* @param y the y coordinate
* @param (optional) cb a callback for when complete
* @returns the index of the pixel or -1 if not found
*/
Jimp.prototype.setPixelColor = Jimp.prototype.setPixelColour = function (hex, x, y, cb) {
if ("number" != typeof hex || "number" != typeof x || "number" != typeof y)
return throwError.call(this, "hex, x and y must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
var idx = this.getPixelIndex(x, y);
this.bitmap.data.writeUInt32BE(hex, idx, true);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
// an array storing the maximum string length of hashes at various bases
var maxHashLength = [];
for (var i = 0; i < 65; i++) {
var l = (i > 1) ? (new BigNumber(Array(64 + 1).join("1"), 2)).toString(i) : NaN;
maxHashLength.push(l.length);
}
/**
* Generates a perceptual hash of the image <https://en.wikipedia.org/wiki/Perceptual_hashing>.
* @param base (optional) a number between 2 and 64 representing the base for the hash (e.g. 2 is binary, 10 is decimaal, 16 is hex, 64 is base 64). Defaults to 64.
* @param (optional) cb a callback for when complete
* @returns a string representing the hash
*/
Jimp.prototype.hash = function(base, cb){
base = base || 64;
if ("function" == typeof base) {
cb = base;
base = 64;
}
if ("number" != typeof base)
return throwError.call(this, "base must be a number", cb);
if (base < 2 || base > 64)
return throwError.call(this, "base must be a number between 2 and 64", cb);
var hash = (new ImagePHash()).getHash(this);
hash = (new BigNumber(hash, 2)).toString(base);
while (hash.length < maxHashLength[base]) {
hash = "0" + hash; // pad out with leading zeros
}
if (isNodePattern(cb)) return cb.call(this, null, hash);
else return hash;
}
/**
* Crops the image at a given point to a give size
* @param x the x coordinate to crop form
* @param y the y coordiante to crop form
* @param w the width of the crop region
* @param h the height of the crop region
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.crop = function (x, y, w, h, cb) {
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
w = Math.round(w);
h = Math.round(h);
var bitmap = new Buffer(this.bitmap.data.length);
var offset = 0;
this.scan(x, y, w, h, function (x, y, idx) {
var data = this.bitmap.data.readUInt32BE(idx, true);
bitmap.writeUInt32BE(data, offset, true);
offset += 4;
});
this.bitmap.data = new Buffer(bitmap);
this.bitmap.width = w;
this.bitmap.height = h;
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Autocrop same color borders from this image
* @param (optional) tolerance: a percent value of tolerance for
* pixels color difference (default: 0.0002%)
* @param (optional) cropOnlyFrames: flag to crop only real frames:
* all 4 sides of the image must have some border (default: true)
* @param (optional) cb: a callback for when complete (default: no callback)
* @returns this for chaining of methods
*/
Jimp.prototype.autocrop = function() {
var w = this.bitmap.width;
var h = this.bitmap.height;
var minPixelsPerSide = 1; // to avoid cropping completely the image, resulting in an invalid 0 sized image
var cb; // callback
var tolerance = 0.0002; // percent of color difference tolerance (default value)
var cropOnlyFrames = true; // flag to force cropping only if the image has a real "frame"
// i.e. all 4 sides have some border (default value)
// parse arguments
for (var a = 0, len = arguments.length; a < len; a++) {
if ("number" == typeof arguments[a]) { // tolerance value passed
tolerance = arguments[a];
}
if ("boolean" == typeof arguments[a]) { // tolerance value passed
cropOnlyFrames = arguments[a];
}
if ("function" == typeof arguments[a]) { // callback value passed
cb = arguments[a];
}
}
/**
* North and East borders must be of the same color as the top left pixel, to be cropped.
* South and West borders must be of the same color as the bottom right pixel, to be cropped.
* It should be possible to crop borders each with a different color,
* but since there are many ways for corners to intersect, it would
* introduce unnecessary complexity to the algorithm.
*/
// scan each side for same color borders
var colorTarget = this.getPixelColor(0, 0); // top left pixel color is the target color
// for north and east sides
var northPixelsToCrop = 0;
var eastPixelsToCrop = 0;
var southPixelsToCrop = 0;
var westPixelsToCrop = 0;
var rgba1 = Jimp.intToRGBA(colorTarget);
north: // north side (scan rows from north to south)
for (var y = 0; y < h - minPixelsPerSide; y++) {
for (var x = 0; x < w; x++) {
var colorXY = this.getPixelColor(x, y);
var rgba2 = Jimp.intToRGBA(colorXY);
var difference =
Math.abs(
Math.max((rgba1.r - rgba2.r) ^ 2, (rgba1.r - rgba2.r - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.g - rgba2.g) ^ 2, (rgba1.g - rgba2.g - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.b - rgba2.b) ^ 2, (rgba1.b - rgba2.b - rgba1.a + rgba2.a) ^ 2)
) / (256 * 256 * 3);
if (difference > tolerance) {
// this pixel is too distant from the first one: abort this side scan
break north;
}
}
// this row contains all pixels with the same color: increment this side pixels to crop
northPixelsToCrop++;
}
east: // east side (scan columns from east to west)
for (var x = 0; x < w - minPixelsPerSide; x++) {
for (var y = 0 + northPixelsToCrop; y < h; y++) {
var colorXY = this.getPixelColor(x, y);
var rgba2 = Jimp.intToRGBA(colorXY);
var difference =
Math.abs(
Math.max((rgba1.r - rgba2.r) ^ 2, (rgba1.r - rgba2.r - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.g - rgba2.g) ^ 2, (rgba1.g - rgba2.g - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.b - rgba2.b) ^ 2, (rgba1.b - rgba2.b - rgba1.a + rgba2.a) ^ 2)
) / (256 * 256 * 3);
if (difference > tolerance) {
// this pixel is too distant from the first one: abort this side scan
break east;
}
}
// this column contains all pixels with the same color: increment this side pixels to crop
eastPixelsToCrop++;
}
colorTarget = this.getPixelColor(w - 1, h - 1); // bottom right pixel color is the target color
// for south and west sides
south: // south side (scan rows from south to north)
for (var y = h - 1; y >= 0 + northPixelsToCrop + minPixelsPerSide; y--) {
for (var x = w - eastPixelsToCrop - 1; x >= 0; x--) {
var colorXY = this.getPixelColor(x, y);
var rgba2 = Jimp.intToRGBA(colorXY);
var difference =
Math.abs(
Math.max((rgba1.r - rgba2.r) ^ 2, (rgba1.r - rgba2.r - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.g - rgba2.g) ^ 2, (rgba1.g - rgba2.g - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.b - rgba2.b) ^ 2, (rgba1.b - rgba2.b - rgba1.a + rgba2.a) ^ 2)
) / (256 * 256 * 3);
if (difference > tolerance) {
// this pixel is too distant from the first one: abort this side scan
break south;
}
}
// this row contains all pixels with the same color: increment this side pixels to crop
southPixelsToCrop++;
}
west: // west side (scan columns from west to east)
for (var x = w - 1; x >= 0 + eastPixelsToCrop + minPixelsPerSide; x--) {
for (var y = h - 1; y >= 0 + northPixelsToCrop; y--) {
var colorXY = this.getPixelColor(x, y);
var rgba2 = Jimp.intToRGBA(colorXY);
var difference =
Math.abs(
Math.max((rgba1.r - rgba2.r) ^ 2, (rgba1.r - rgba2.r - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.g - rgba2.g) ^ 2, (rgba1.g - rgba2.g - rgba1.a + rgba2.a) ^ 2) +
Math.max((rgba1.b - rgba2.b) ^ 2, (rgba1.b - rgba2.b - rgba1.a + rgba2.a) ^ 2)
) / (256 * 256 * 3);
if (difference > tolerance) {
// this pixel is too distant from the first one: abort this side scan
break west;
}
}
// this column contains all pixels with the same color: increment this side pixels to crop
westPixelsToCrop++;
}
// safety checks
var widthOfPixelsToCrop = w - (westPixelsToCrop + eastPixelsToCrop);
widthOfPixelsToCrop >= 0 ? widthOfPixelsToCrop : 0;
var heightOfPixelsToCrop = h - (southPixelsToCrop + northPixelsToCrop);
heightOfPixelsToCrop >= 0 ? heightOfPixelsToCrop : 0;
// decide if a crop is needed
var doCrop = false;
if (cropOnlyFrames) { // crop image if all sides should be cropped
doCrop = (
eastPixelsToCrop !== 0 &&
northPixelsToCrop !== 0 &&
westPixelsToCrop !== 0 &&
southPixelsToCrop !== 0
);
} else { // crop image if at least one side should be cropped
doCrop = (
eastPixelsToCrop !== 0 ||
northPixelsToCrop !== 0 ||
westPixelsToCrop !== 0 ||
southPixelsToCrop !== 0
);
}
if (doCrop) { // do the real crop
this.crop(
eastPixelsToCrop,
northPixelsToCrop,
widthOfPixelsToCrop,
heightOfPixelsToCrop
);
}
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Blits a source image on to this image
* @param src the source Jimp instance
* @param x the x position to blit the image
* @param y the y position to blit the image
* @param srcx (optional) the x position from which to crop the source image
* @param srcy (optional) the y position from which to crop the source image
* @param srcw (optional) the width to which to crop the source image
* @param srch (optional) the height to which to crop the source image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.blit = function (src, x, y, srcx, srcy, srcw, srch, cb) {
if ("object" != typeof src || src.constructor != Jimp)
return throwError.call(this, "The source must be a Jimp image", cb);
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
if ("function" == typeof srcx) {
cb = srcx;
srcx = 0;
srcy = 0;
srcw = src.bitmap.width;
srch = src.bitmap.height;
} else if (typeof srcx == typeof srcy && typeof srcy == typeof srcw && typeof srcw == typeof srch) {
srcx = srcx || 0;
srcy = srcy || 0;
srcw = srcw || src.bitmap.width;
srch = srch || src.bitmap.height;
} else {
return throwError.call(this, "srcx, srcy, srcw, srch must be numbers", cb);
}
// round input
x = Math.round(x);
y = Math.round(y);
// round input
srcx = Math.round(srcx);
srcy = Math.round(srcy);
srcw = Math.round(srcw);
srch = Math.round(srch);
var that = this;
src.scan(srcx, srcy, srcw, srch, function(sx, sy, idx) {
var dstIdx = that.getPixelIndex(x+sx-srcx, y+sy-srcy);
that.bitmap.data[dstIdx] = this.bitmap.data[idx];
that.bitmap.data[dstIdx+1] = this.bitmap.data[idx+1];
that.bitmap.data[dstIdx+2] = this.bitmap.data[idx+2];
that.bitmap.data[dstIdx+3] = this.bitmap.data[idx+3];
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Masks a source image on to this image using average pixel colour. A completely black pixel on the mask will turn a pixel in the image completely transparent.
* @param src the source Jimp instance
* @param x the x position to blit the image
* @param y the y position to blit the image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.mask = function (src, x, y, cb) {
if ("object" != typeof src || src.constructor != Jimp)
return throwError.call(this, "The source must be a Jimp image", cb);
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
var that = this;
src.scan(0, 0, src.bitmap.width, src.bitmap.height, function(sx, sy, idx) {
var dstIdx = that.getPixelIndex(x+sx, y+sy);
var avg = (this.bitmap.data[idx+0] + this.bitmap.data[idx+1] + this.bitmap.data[idx+2]) / 3;
that.bitmap.data[dstIdx+3] *= avg / 255;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Composites a source image over to this image respecting alpha channels
* @param src the source Jimp instance
* @param x the x position to blit the image
* @param y the y position to blit the image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.composite = function (src, x, y, cb) {
if ("object" != typeof src || src.constructor != Jimp)
return throwError.call(this, "The source must be a Jimp image", cb);
if ("number" != typeof x || "number" != typeof y)
return throwError.call(this, "x and y must be numbers", cb);
// round input
x = Math.round(x);
y = Math.round(y);
var that = this;
src.scan(0, 0, src.bitmap.width, src.bitmap.height, function(sx, sy, idx) {
// http://stackoverflow.com/questions/7438263/alpha-compositing-algorithm-blend-modes
var dstIdx = that.getPixelIndex(x+sx, y+sy);
var fg = {
r: this.bitmap.data[idx + 0] / 255,
g: this.bitmap.data[idx + 1] / 255,
b: this.bitmap.data[idx + 2] / 255,
a: this.bitmap.data[idx + 3] / 255
}
var bg = {
r: that.bitmap.data[dstIdx + 0] / 255,
g: that.bitmap.data[dstIdx + 1] / 255,
b: that.bitmap.data[dstIdx + 2] / 255,
a: that.bitmap.data[dstIdx + 3] / 255
}
var a = bg.a + fg.a - bg.a * fg.a;
var r = ((fg.r * fg.a) + (bg.r * bg.a) * (1 - fg.a)) / a;
var g = ((fg.g * fg.a) + (bg.g * bg.a) * (1 - fg.a)) / a;
var b = ((fg.b * fg.a) + (bg.b * bg.a) * (1 - fg.a)) / a;
that.bitmap.data[dstIdx + 0] = Jimp.limit255(r * 255);
that.bitmap.data[dstIdx + 1] = Jimp.limit255(g * 255);
that.bitmap.data[dstIdx + 2] = Jimp.limit255(b * 255);
that.bitmap.data[dstIdx + 3] = Jimp.limit255(a * 255);
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Adjusts the brightness of the image
* @param val the amount to adjust the brightness, a number between -1 and +1
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.brightness = function (val, cb) {
if ("number" != typeof val)
return throwError.call(this, "val must be numbers", cb);
if (val < -1 || val > +1)
return throwError.call(this, "val must be a number between -1 and +1", cb);
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
if (val < 0.0) {
this.bitmap.data[idx] = this.bitmap.data[idx] * (1 + val);
this.bitmap.data[idx+1] = this.bitmap.data[idx+1] * (1 + val);
this.bitmap.data[idx+2] = this.bitmap.data[idx+2] * (1 + val);
} else {
this.bitmap.data[idx] = this.bitmap.data[idx] + ((255 - this.bitmap.data[idx]) * val);
this.bitmap.data[idx+1] = this.bitmap.data[idx+1] + ((255 - this.bitmap.data[idx+1]) * val);
this.bitmap.data[idx+2] = this.bitmap.data[idx+2] + ((255 - this.bitmap.data[idx+2]) * val);
}
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Adjusts the contrast of the image
* val the amount to adjust the contrast, a number between -1 and +1
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.contrast = function (val, cb) {
if ("number" != typeof val)
return throwError.call(this, "val must be numbers", cb);
if (val < -1 || val > +1)
return throwError.call(this, "val must be a number between -1 and +1", cb);
function adjust(value) {
if (val < 0) {
var x = (value > 127) ? 1 - value / 255 : value / 255;
if (x < 0) x = 0;
x = 0.5 * Math.pow (x * 2, 1 + val);
return (value > 127) ? (1.0 - x) * 255 : x * 255;
} else {
var x = (value > 127) ? 1 - value / 255 : value / 255;
if (x < 0) x = 0;
x = 0.5 * Math.pow (2 * x, ((val == 1) ? 127 : 1 / (1 - val)));
return (value > 127) ? (1 - x) * 255 : x * 255;
}
}
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data[idx] = adjust(this.bitmap.data[idx]);
this.bitmap.data[idx+1] = adjust(this.bitmap.data[idx+1]);
this.bitmap.data[idx+2] = adjust(this.bitmap.data[idx+2]);
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Apply a posterize effect
* val the amount to adjust the contrast, minimum threshold is two
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.posterize = function (n, cb) {
if ("number" != typeof n)
return throwError.call(this, "n must be numbers", cb);
if (n < 2) n = 2; // minumum of 2 levels
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data[idx] = (Math.floor(this.bitmap.data[idx] / 255 * (n - 1)) / (n - 1)) * 255;
this.bitmap.data[idx+1] = (Math.floor(this.bitmap.data[idx+1] / 255 * (n - 1)) / (n - 1)) * 255;
this.bitmap.data[idx+2] = (Math.floor(this.bitmap.data[idx+2] / 255 * (n - 1)) / (n - 1)) * 255;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Get an image's histogram
* @return {object} An object with an array of color occurence counts for each channel (r,g,b)
*/
function histogram() {
var histogram = {
r: new Array(256).fill(0),
g: new Array(256).fill(0),
b: new Array(256).fill(0)
};
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function(x, y, index){
histogram.r[this.bitmap.data[index+0]]++;
histogram.g[this.bitmap.data[index+1]]++;
histogram.b[this.bitmap.data[index+2]]++;
});
return histogram;
}
/**
* Normalizes the image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.normalize = function (cb) {
var h = histogram.call(this);
/**
* Normalize values
* @param {integer} value Pixel channel value.
* @param {integer} min Minimum value for channel
* @param {integer} max Maximum value for channel
* @return {integer}
*/
var normalize = function (value, min, max) {
return (value - min) * 255 / (max - min);
};
var getBounds = function (histogramChannel) {
return [
histogramChannel.findIndex(function(value) {
return value > 0;
}),
255 - histogramChannel.slice().reverse().findIndex(function(value) {
return value > 0;
})
];
};
// store bounds (minimum and maximum values)
var bounds = {
r: getBounds(h.r),
g: getBounds(h.g),
b: getBounds(h.b)
};
// apply value transformations
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var r = this.bitmap.data[idx + 0];
var g = this.bitmap.data[idx + 1];
var b = this.bitmap.data[idx + 2];
this.bitmap.data[idx + 0] = normalize(r, bounds.r[0], bounds.r[1]);
this.bitmap.data[idx + 1] = normalize(g, bounds.g[0], bounds.g[1]);
this.bitmap.data[idx + 2] = normalize(b, bounds.b[0], bounds.b[1]);
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
}
/**
* Inverts the image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.invert = function (cb) {
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data[idx] = 255 - this.bitmap.data[idx];
this.bitmap.data[idx+1] = 255 - this.bitmap.data[idx+1];
this.bitmap.data[idx+2] = 255 - this.bitmap.data[idx+2];
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Flip the image horizontally
* @param horizontal a Boolean, if true the image will be flipped horizontally
* @param vertical a Boolean, if true the image will be flipped vertically
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.mirror = Jimp.prototype.flip = function (horizontal, vertical, cb) {
if ("boolean" != typeof horizontal || "boolean" != typeof vertical)
return throwError.call(this, "horizontal and vertical must be Booleans", cb);
var bitmap = new Buffer(this.bitmap.data.length);
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var _x = (horizontal) ? (this.bitmap.width - 1 - x) : x;
var _y = (vertical) ? (this.bitmap.height - 1 - y) : y;
var _idx = (this.bitmap.width * _y + _x) << 2;
var data = this.bitmap.data.readUInt32BE(idx, true);
bitmap.writeUInt32BE(data, _idx, true);
});
this.bitmap.data = new Buffer(bitmap);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Applies a true Gaussian blur to the image (warning: this is VERY slow)
* @param r the pixel radius of the blur
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.gaussian = function (r, cb) {
// http://blog.ivank.net/fastest-gaussian-blur.html
if ("number" != typeof r)
return throwError.call(this, "r must be a number", cb);
if (r < 1)
return throwError.call(this, "r must be greater than 0", cb);
var rs = Math.ceil(r * 2.57); // significant radius
for (var y = 0; y < this.bitmap.height; y++) {
log("Gaussian: " + Math.round(y / this.bitmap.height * 100) + "%");
for (var x = 0; x < this.bitmap.width; x++) {
var red = 0;
var green = 0;
var blue = 0;
var alpha = 0;
var wsum = 0;
for (var iy = y - rs; iy < y + rs + 1; iy++) {
for (var ix = x - rs; ix < x + rs + 1; ix++) {
var x1 = Math.min(this.bitmap.width - 1, Math.max(0, ix));
var y1 = Math.min(this.bitmap.height - 1, Math.max(0, iy));
var dsq = (ix - x) * (ix - x) + (iy - y) * (iy - y);
var wght = Math.exp( -dsq / (2*r*r) ) / (Math.PI*2*r*r);
var idx = (y1 * this.bitmap.width + x1) << 2;
red += this.bitmap.data[idx] * wght;
green += this.bitmap.data[idx+1] * wght;
blue += this.bitmap.data[idx+2] * wght;
alpha += this.bitmap.data[idx+3] * wght;
wsum += wght;
}
var idx = (y * this.bitmap.width + x) << 2;
this.bitmap.data[idx] = Math.round( red / wsum);
this.bitmap.data[idx+1] = Math.round( green / wsum);
this.bitmap.data[idx+2] = Math.round( blue / wsum);
this.bitmap.data[idx+3] = Math.round( alpha / wsum);
}
}
}
clear(); // clear the log
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/*
Superfast Blur (0.5)
http://www.quasimondo.com/BoxBlurForCanvas/FastBlur.js
Copyright (c) 2011 Mario Klingemann
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
var mul_table = [1,57,41,21,203,34,97,73,227,91,149,62,105,45,39,137,241,107,3,173,39,71,65,238,219,101,187,87,81,151,141,133,249,117,221,209,197,187,177,169,5,153,73,139,133,127,243,233,223,107,103,99,191,23,177,171,165,159,77,149,9,139,135,131,253,245,119,231,224,109,211,103,25,195,189,23,45,175,171,83,81,79,155,151,147,9,141,137,67,131,129,251,123,30,235,115,113,221,217,53,13,51,50,49,193,189,185,91,179,175,43,169,83,163,5,79,155,19,75,147,145,143,35,69,17,67,33,65,255,251,247,243,239,59,29,229,113,111,219,27,213,105,207,51,201,199,49,193,191,47,93,183,181,179,11,87,43,85,167,165,163,161,159,157,155,77,19,75,37,73,145,143,141,35,138,137,135,67,33,131,129,255,63,250,247,61,121,239,237,117,29,229,227,225,111,55,109,216,213,211,209,207,205,203,201,199,197,195,193,48,190,47,93,185,183,181,179,178,176,175,173,171,85,21,167,165,41,163,161,5,79,157,78,154,153,19,75,149,74,147,73,144,143,71,141,140,139,137,17,135,134,133,66,131,65,129,1];
var shg_table = [0,9,10,10,14,12,14,14,16,15,16,15,16,15,15,17,18,17,12,18,16,17,17,19,19,18,19,18,18,19,19,19,20,19,20,20,20,20,20,20,15,20,19,20,20,20,21,21,21,20,20,20,21,18,21,21,21,21,20,21,17,21,21,21,22,22,21,22,22,21,22,21,19,22,22,19,20,22,22,21,21,21,22,22,22,18,22,22,21,22,22,23,22,20,23,22,22,23,23,21,19,21,21,21,23,23,23,22,23,23,21,23,22,23,18,22,23,20,22,23,23,23,21,22,20,22,21,22,24,24,24,24,24,22,21,24,23,23,24,21,24,23,24,22,24,24,22,24,24,22,23,24,24,24,20,23,22,23,24,24,24,24,24,24,24,23,21,23,22,23,24,24,24,22,24,24,24,23,22,24,24,25,23,25,25,23,24,25,25,24,22,25,25,25,24,23,24,25,25,25,25,25,25,25,25,25,25,25,25,23,25,23,24,25,25,25,25,25,25,25,25,25,24,22,25,25,23,25,25,20,24,25,24,25,25,22,24,25,24,25,24,25,25,24,25,25,25,25,22,25,25,25,24,25,24,25,18];
/**
* A fast blur algorithm that produces similar effect to a Gausian blur - but MUCH quicker
* @param r the pixel radius of the blur
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.blur = function (r, cb) {
if ("number" != typeof r)
return throwError.call(this, "r must be a number", cb);
if (r < 1)
return throwError.call(this, "r must be greater than 0", cb);
var rsum, gsum, bsum, asum, x, y, i, p, p1, p2, yp, yi, yw, idx, pa;
var wm = this.bitmap.width - 1;
var hm = this.bitmap.height - 1;
var wh = this.bitmap.width * this.bitmap.height;
var rad1 = r + 1;
var mul_sum = mul_table[r];
var shg_sum = shg_table[r];
var red = [];
var green = [];
var blue = [];
var alpha = [];
var vmin = [];
var vmax = [];
var iterations = 2;
while (iterations-- > 0) {
yw = yi = 0;
for (y = 0; y < this.bitmap.height; y++) {
rsum = this.bitmap.data[yw] * rad1;
gsum = this.bitmap.data[yw + 1] * rad1;
bsum = this.bitmap.data[yw + 2] * rad1;
asum = this.bitmap.data[yw + 3] * rad1;
for (i = 1; i <= r; i++) {
p = yw + (((i > wm ? wm : i)) << 2);
rsum += this.bitmap.data[p++];
gsum += this.bitmap.data[p++];
bsum += this.bitmap.data[p++];
asum += this.bitmap.data[p];
}
for (x = 0; x < this.bitmap.width; x++) {
red[yi] = rsum;
green[yi] = gsum;
blue[yi] = bsum;
alpha[yi] = asum;
if (y == 0) {
vmin[x] = ((p = x + rad1) < wm ? p : wm) << 2;
vmax[x] = ((p = x - r) > 0 ? p << 2 : 0);
}
p1 = yw + vmin[x];
p2 = yw + vmax[x];
rsum += this.bitmap.data[p1++] - this.bitmap.data[p2++];
gsum += this.bitmap.data[p1++] - this.bitmap.data[p2++];
bsum += this.bitmap.data[p1++] - this.bitmap.data[p2++];
asum += this.bitmap.data[p1] - this.bitmap.data[p2];
yi++;
}
yw += (this.bitmap.width << 2);
}
for (x = 0; x < this.bitmap.width; x++) {
yp = x;
rsum = red[yp] * rad1;
gsum = green[yp] * rad1;
bsum = blue[yp] * rad1;
asum = alpha[yp] * rad1;
for (i = 1; i <= r; i++) {
yp += (i > hm ? 0 : this.bitmap.width);
rsum += red[yp];
gsum += green[yp];
bsum += blue[yp];
asum += alpha[yp];
}
yi = x << 2;
for (y = 0; y < this.bitmap.height; y++) {
this.bitmap.data[yi + 3] = pa = (asum * mul_sum) >>> shg_sum;
if (pa > 255) this.bitmap.data[yi + 3] = 255; // normalise alpha
if (pa > 0) {
pa = 255 / pa;
this.bitmap.data[yi] = ((rsum * mul_sum) >>> shg_sum) * pa;
this.bitmap.data[yi + 1] = ((gsum * mul_sum) >>> shg_sum) * pa;
this.bitmap.data[yi + 2] = ((bsum * mul_sum) >>> shg_sum) * pa;
} else {
this.bitmap.data[yi] = this.bitmap.data[yi + 1] = this.bitmap.data[yi + 2] = 0;
}
if (x == 0) {
vmin[y] = ((p = y + rad1) < hm ? p : hm) * this.bitmap.width;
vmax[y] = ((p = y - r) > 0 ? p * this.bitmap.width : 0);
}
p1 = x + vmin[y];
p2 = x + vmax[y];
rsum += red[p1] - red[p2];
gsum += green[p1] - green[p2];
bsum += blue[p1] - blue[p2];
asum += alpha[p1] - alpha[p2];
yi += this.bitmap.width << 2;
}
}
}
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Removes colour from the image using ITU Rec 709 luminance values
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.greyscale = function (cb) {
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var grey = parseInt(.2126 * this.bitmap.data[idx] + .7152 * this.bitmap.data[idx+1] + .0722 * this.bitmap.data[idx+2], 10);
this.bitmap.data[idx] = grey;
this.bitmap.data[idx+1] = grey;
this.bitmap.data[idx+2] = grey;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
// Alias of greyscale for our American friends
Jimp.prototype.grayscale = Jimp.prototype.greyscale;
/**
* Applies a sepia tone to the image
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.sepia = function (cb) {
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var red = this.bitmap.data[idx];
var green = this.bitmap.data[idx+1];
var blue = this.bitmap.data[idx+2];
red = (red * 0.393) + (green * 0.769) + (blue * 0.189);
green = (red * 0.349) + (green * 0.686) + (blue * 0.168);
blue = (red * 0.272) + (green * 0.534) + (blue * 0.131);
this.bitmap.data[idx] = (red < 255) ? red : 255;
this.bitmap.data[idx+1] = (green < 255) ? green : 255;
this.bitmap.data[idx+2] = (blue < 255) ? blue : 255;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Multiplies the opacity of each pixel by a factor between 0 and 1
* @param f A number, the factor by wich to multiply the opacity of each pixel
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.opacity = function (f, cb) {
if ("number" != typeof f)
return throwError.call(this, "f must be a number", cb);
if (f < 0 || f > 1)
return throwError.call(this, "f must be a number from 0 to 1", cb);
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var v = this.bitmap.data[idx+3] * f;
this.bitmap.data[idx+3] = v;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Fades each pixel by a factor between 0 and 1
* @param f A number from 0 to 1. 0 will haven no effect. 1 will turn the image completely transparent.
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.fade = function (f, cb) {
if ("number" != typeof f)
return throwError.call(this, "f must be a number", cb);
if (f < 0 || f > 1)
return throwError.call(this, "f must be a number from 0 to 1", cb);
// this method is an alternative to opacity (which may be deprecated)
this.opacity(1 - f);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Set the alpha channel on every pixel to fully opaque
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.opaque = function (cb) {
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data[idx+3] = 255;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Resizes the image to a set width and height using a 2-pass bilinear algorithm
* @param w the width to resize the image to (or Jimp.AUTO)
* @param h the height to resize the image to (or Jimp.AUTO)
* @param (optional) mode a scaling method (e.g. Jimp.RESIZE_BEZIER)
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.resize = function (w, h, mode, cb) {
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
if ("function" == typeof mode && "undefined" == typeof cb) {
cb = mode;
mode = null;
}
if (w == Jimp.AUTO && h == Jimp.AUTO)
return throwError.call(this, "w and h cannot both the set to auto", cb);
if (w == Jimp.AUTO) w = this.bitmap.width * (h / this.bitmap.height);
if (h == Jimp.AUTO) h = this.bitmap.height * (w / this.bitmap.width);
// round inputs
w = Math.round(w);
h = Math.round(h);
if ("function" == typeof Resize2[mode]) {
var dst = {
data: new Buffer(w * h * 4),
width: w,
height: h
};
Resize2[mode](this.bitmap, dst);
this.bitmap = dst;
} else {
var that = this;
var resize = new Resize(this.bitmap.width, this.bitmap.height, w, h, true, true, function (buffer) {
that.bitmap.data = new Buffer(buffer);
that.bitmap.width = w;
that.bitmap.height = h;
});
resize.resize(this.bitmap.data);
}
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Scale the image so the given width and height keeping the aspect ratio. Some parts of the image may be clipped.
* @param w the width to resize the image to
* @param h the height to resize the image to
* @param (optional) alignBits A bitmask for horizontal and vertical alignment
* @param (optional) mode a scaling method (e.g. Jimp.RESIZE_BEZIER)
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.cover = function (w, h, alignBits, mode, cb) {
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
if (alignBits && "function" == typeof alignBits && "undefined" == typeof cb) {
cb = alignBits;
alignBits = null;
mode = null;
} else if ("function" == typeof mode && "undefined" == typeof cb) {
cb = mode;
mode = null;
}
alignBits = alignBits || (Jimp.HORIZONTAL_ALIGN_CENTER | Jimp.VERTICAL_ALIGN_MIDDLE);
var hbits = ((alignBits) & ((1<<(3))-1));
var vbits = alignBits >> 3;
// check if more flags than one is in the bit sets
if(!(((hbits != 0) && !(hbits & (hbits - 1))) || ((vbits != 0) && !(vbits & (vbits - 1)))))
return throwError.call(this, "only use one flag per alignment direction", cb);
var align_h = (hbits >> 1); // 0, 1, 2
var align_v = (vbits >> 1); // 0, 1, 2
var f = (w/h > this.bitmap.width/this.bitmap.height) ?
w/this.bitmap.width : h/this.bitmap.height;
this.scale(f, mode);
this.crop(((this.bitmap.width - w) / 2) * align_h, ((this.bitmap.height - h) / 2) * align_v, w, h);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Scale the image to the given width and height keeping the aspect ratio. Some parts of the image may be letter boxed.
* @param w the width to resize the image to
* @param h the height to resize the image to
* @param (optional) alignBits A bitmask for horizontal and vertical alignment
* @param (optional) mode a scaling method (e.g. Jimp.RESIZE_BEZIER)
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.contain = function (w, h, alignBits, mode, cb) {
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
//permit any sort of optional parameters combination
switch (typeof alignBits) {
case 'string':
if ("function" == typeof mode && "undefined" == typeof cb) cb = mode;
mode = alignBits;
alignBits = null;
case 'function':
if ("undefined" == typeof cb) cb = alignBits;
mode = null;
alignBits = null;
default:
if ("function" == typeof mode && "undefined" == typeof cb) {
cb = mode;
mode = null;
}
}
alignBits = alignBits || (Jimp.HORIZONTAL_ALIGN_CENTER | Jimp.VERTICAL_ALIGN_MIDDLE);
var hbits = ((alignBits) & ((1<<(3))-1));
var vbits = alignBits >> 3;
// check if more flags than one is in the bit sets
if(!(((hbits != 0) && !(hbits & (hbits - 1))) || ((vbits != 0) && !(vbits & (vbits - 1)))))
return throwError.call(this, "only use one flag per alignment direction", cb);
var align_h = (hbits >> 1); // 0, 1, 2
var align_v = (vbits >> 1); // 0, 1, 2
var f = (w/h > this.bitmap.width/this.bitmap.height) ?
h/this.bitmap.height : w/this.bitmap.width;
var c = this.clone().scale(f, mode);
this.resize(w, h, mode);
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data.writeUInt32BE(this._background, idx);
});
this.blit(c, ((this.bitmap.width - c.bitmap.width) / 2) * align_h, ((this.bitmap.height - c.bitmap.height) / 2) * align_v);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Uniformly scales the image by a factor.
* @param f the factor to scale the image by
* @param (optional) mode a scaling method (e.g. Jimp.RESIZE_BEZIER)
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.scale = function (f, mode, cb) {
if ("number" != typeof f)
return throwError.call(this, "f must be a number", cb);
if (f < 0)
return throwError.call(this, "f must be a positive number", cb);
if ("function" == typeof mode && "undefined" == typeof cb) {
cb = mode;
mode = null;
}
var w = this.bitmap.width * f;
var h = this.bitmap.height * f;
this.resize(w, h, mode);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Scale the image to the largest size that fits inside the rectangle that has the given width and height.
* @param w the width to resize the image to
* @param h the height to resize the image to
* @param (optional) mode a scaling method (e.g. Jimp.RESIZE_BEZIER)
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.scaleToFit = function (w, h, mode, cb) {
if ("number" != typeof w || "number" != typeof h)
return throwError.call(this, "w and h must be numbers", cb);
if ("function" == typeof mode && "undefined" == typeof cb) {
cb = mode;
mode = null;
}
var f = (w/h > this.bitmap.width/this.bitmap.height) ?
h/this.bitmap.height : w/this.bitmap.width;
this.scale(f, mode);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Rotates an image clockwise by a number of degrees rounded to the nearest 90 degrees. NB: 'this' must be a Jimp object.
* @param deg the number of degress to rotate the image by
* @returns nothing
*/
function simpleRotate(deg) {
var i = Math.round(deg / 90) % 4;
while (i < 0) i += 4;
while (i > 0) {
// https://github.com/ekulabuhov/jimp/commit/9a0c7cff88292d88c32a424b11256c76f1e20e46
var dstBuffer = new Buffer(this.bitmap.data.length);
var dstOffset = 0;
for (var x = 0; x < this.bitmap.width; x++) {
for (var y = this.bitmap.height - 1; y >= 0; y--) {
var srcOffset = (this.bitmap.width * y + x) << 2;
var data = this.bitmap.data.readUInt32BE(srcOffset, true);
dstBuffer.writeUInt32BE(data, dstOffset, true);
dstOffset += 4;
}
}
this.bitmap.data = new Buffer(dstBuffer);
var tmp = this.bitmap.width;
this.bitmap.width = this.bitmap.height;
this.bitmap.height = tmp;
i--;
}
}
/**
* Rotates an image clockwise by an arbitary number of degrees. NB: 'this' must be a Jimp object.
* @param deg the number of degress to rotate the image by
* @param (optional) mode resize mode or a boolean, if false then the width and height of the image will not be changed
* @returns nothing
*/
function advancedRotate(deg, mode) {
var rad = (deg % 360) * Math.PI / 180;
var cosine = Math.cos(rad);
var sine = Math.sin(rad);
var w, h; // the final width and height if resize == true
if (mode == true || "string" == typeof mode) {
// resize the image to it maximum dimention and blit the existing image onto the centre so that when it is rotated the image is kept in bounds
// http://stackoverflow.com/questions/3231176/how-to-get-size-of-a-rotated-rectangle
w = Math.round(Math.abs(this.bitmap.width * cosine) + Math.abs(this.bitmap.height * sine));
h = Math.round(Math.abs(this.bitmap.width * sine) + Math.abs(this.bitmap.height * cosine));
var c = this.clone();
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data.writeUInt32BE(this._background, idx);
});
var max= Math.max(w,h,this.bitmap.width,this.bitmap.height)
this.resize(max, max, mode);
this.blit(c, this.bitmap.width / 2 - c.bitmap.width / 2, this.bitmap.height / 2 - c.bitmap.height / 2);
}
var dstBuffer = new Buffer(this.bitmap.data.length);
function createTranslationFunction(deltaX, deltaY) {
return function(x, y) {
return {
x : (x + deltaX),
y : (y + deltaY)
};
}
}
var translate2Cartesian = createTranslationFunction(-(this.bitmap.width / 2), -(this.bitmap.height / 2));
var translate2Screen = createTranslationFunction(this.bitmap.width / 2, this.bitmap.height / 2);
for (var y = 0; y < this.bitmap.height; y++) {
for (var x = 0; x < this.bitmap.width; x++) {
var cartesian = translate2Cartesian(x, this.bitmap.height - y);
var source = translate2Screen(
cosine * cartesian.x - sine * cartesian.y,
cosine * cartesian.y + sine * cartesian.x
);
if (source.x >= 0 && source.x < this.bitmap.width
&& source.y >= 0 && source.y < this.bitmap.height) {
var srcIdx = (this.bitmap.width * (this.bitmap.height - source.y | 0) + source.x | 0) << 2;
var pixelRGBA = this.bitmap.data.readUInt32BE(srcIdx, true);
var dstIdx = (this.bitmap.width * y + x) << 2;
dstBuffer.writeUInt32BE(pixelRGBA, dstIdx);
} else {
// reset off-image pixels
var dstIdx = (this.bitmap.width * y + x) << 2;
dstBuffer.writeUInt32BE(this._background, dstIdx);
}
}
}
this.bitmap.data = dstBuffer;
if (mode == true || "string" == typeof mode) {
// now crop the image to the final size
var x = (this.bitmap.width / 2) - (w/2);
var y = (this.bitmap.height / 2) - (h/2);
this.crop(x, y, w, h);
}
};
/**
* Rotates the image clockwise by a number of degrees. By default the width and height of the image will be resized appropriately.
* @param deg the number of degress to rotate the image by
* @param (optional) mode resize mode or a boolean, if false then the width and height of the image will not be changed
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.rotate = function (deg, mode, cb) {
// enable overloading
if ("undefined" == typeof mode || mode === null) {
// e.g. image.resize(120);
// e.g. image.resize(120, null, cb);
// e.g. image.resize(120, undefined, cb);
mode = true;
}
if ("function" == typeof mode && "undefined" == typeof cb) {
// e.g. image.resize(120, cb);
cb = mode;
mode = true;
}
if ("number" != typeof deg)
return throwError.call(this, "deg must be a number", cb);
if ("boolean" != typeof mode && "string" != typeof mode)
return throwError.call(this, "mode must be a boolean or a string", cb);
if (deg % 90 == 0 && mode !== false) simpleRotate.call(this, deg, cb);
else advancedRotate.call(this, deg, mode, cb);
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
};
/**
* Converts the image to a buffer
* @param mime the mime type of the image buffer to be created
* @param cb a Node-style function to call with the buffer as the second argument
* @returns this for chaining of methods
*/
Jimp.prototype.getBuffer = function (mime, cb) {
if (mime == Jimp.AUTO) { // allow auto MIME detection
mime = this._originalMime || Jimp.MIME_PNG;
}
if ("string" != typeof mime)
return throwError.call(this, "mime must be a string", cb);
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
switch (mime.toLowerCase()) {
case Jimp.MIME_PNG:
var that = this;
var png = new PNG({
width: this.bitmap.width,
height:this.bitmap.height,
bitDepth: 8,
deflateLevel: this._deflateLevel,
deflateStrategy: this._deflateStrategy,
filterType: this._filterType,
colorType: (this._rgba) ? 6 : 2,
inputHasAlpha: true
});
if (this._rgba) png.data = new Buffer(this.bitmap.data);
else png.data = compositeBitmapOverBackground(this).data; // when PNG doesn't support alpha
StreamToBuffer(png.pack(), function (err, buffer) {
return cb.call(that, null, buffer);
});
break;
case Jimp.MIME_JPEG:
// composite onto a new image so that the background shows through alpha channels
var jpeg = JPEG.encode(compositeBitmapOverBackground(this), this._quality);
return cb.call(this, null, jpeg.data);
case Jimp.MIME_BMP:
// composite onto a new image so that the background shows through alpha channels
var bmp = BMP.encode(compositeBitmapOverBackground(this));
return cb.call(this, null, bmp.data);
default:
return cb.call(this, "Unsupported MIME type: " + mime);
}
return this;
};
function compositeBitmapOverBackground(image){
return (new Jimp(image.bitmap.width, image.bitmap.height, image._background)).composite(image, 0, 0).bitmap;
}
/**
* Converts the image to a base 64 string
* @param mime the mime type of the image data to be created
* @param cb a Node-style function to call with the buffer as the second argument
* @returns this for chaining of methods
*/
Jimp.prototype.getBase64 = function (mime, cb) {
if (mime == Jimp.AUTO) { // allow auto MIME detection
mime = this._originalMime || Jimp.MIME_PNG;
}
if ("string" != typeof mime)
return throwError.call(this, "mime must be a string", cb);
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
this.getBuffer(mime, function(err, data) {
var src = "data:" + mime + ";base64," + data.toString("base64");
return cb.call(this, null, src);
});
return this;
};
/**
* Apply a ordered dithering effect
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.dither565 = function (cb) {
var rgb565_matrix = [
1, 9, 3, 11,
13, 5, 15, 7,
4, 12, 2, 10,
16, 8, 14, 6
];
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var tresshold_id = ((y & 3) << 2) + (x % 4);
var dither = rgb565_matrix[tresshold_id];
this.bitmap.data[idx ] = Math.min(this.bitmap.data[idx] + dither, 0xff);
this.bitmap.data[idx+1] = Math.min(this.bitmap.data[idx+1] + dither, 0xff);
this.bitmap.data[idx+2] = Math.min(this.bitmap.data[idx+2] + dither, 0xff);
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
}
// alternative reference
Jimp.prototype.dither16 = Jimp.prototype.dither565;
/**
* Apply multiple color modification rules
* @param actions list of color modification rules, in following format: { apply: '<rule-name>', params: [ <rule-parameters> ] }
* @param (optional) cb a callback for when complete
* @returns this for chaining of methods
*/
Jimp.prototype.color = Jimp.prototype.colour = function (actions, cb) {
if (!actions || !Array.isArray(actions))
return throwError.call(this, "actions must be an array", cb);
var originalScope = this;
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
var clr = TinyColor({r: this.bitmap.data[idx], g: this.bitmap.data[idx + 1], b: this.bitmap.data[idx + 2]});
var colorModifier = function (i, amount) {
c = clr.toRgb();
c[i] = Math.max(0, Math.min(c[i] + amount, 255));
return TinyColor(c);
}
actions.forEach(function (action) {
if (action.apply === "mix") {
clr = TinyColor.mix(clr, action.params[0], action.params[1]);
} else if (action.apply === "tint") {
clr = TinyColor.mix(clr, "white", action.params[0]);
} else if (action.apply === "shade") {
clr = TinyColor.mix(clr, "black", action.params[0]);
} else if (action.apply === "xor") {
var clr2 = TinyColor(action.params[0]).toRgb();
clr = clr.toRgb();
clr = TinyColor({ r: clr.r ^ clr2.r, g: clr.g ^ clr2.g, b: clr.b ^ clr2.b});
} else if (action.apply === "red") {
clr = colorModifier("r", action.params[0]);
} else if (action.apply === "green") {
clr = colorModifier("g", action.params[0]);
} else if (action.apply === "blue") {
clr = colorModifier("b", action.params[0]);
} else {
if (action.apply === "hue") {
action.apply = "spin";
}
var fn = clr[action.apply];
if (!fn) {
return throwError.call(originalScope, "action " + action.apply + " not supported", cb);
}
clr = fn.apply(clr, action.params);
}
});
clr = clr.toRgb();
this.bitmap.data[idx ] = clr.r;
this.bitmap.data[idx+1] = clr.g;
this.bitmap.data[idx+2] = clr.b;
});
if (isNodePattern(cb)) return cb.call(this, null, this);
else return this;
}
/**
* Loads a bitmap font from a file
* @param file the file path of a .fnt file
* @param (optional) cb a function to call when the font is loaded
* @returns a promise
*/
Jimp.loadFont = function (file, cb) {
if ("string" != typeof file)
return throwError.call(this, "file must be a string", cb);
var that = this;
return new Promise(function (resolve, reject) {
cb = cb || function(err, font) {
if (err) reject(err);
else resolve(font);
}
BMFont(file, function(err, font) {
var chars = {}, kernings = {};
if (err) return throwError.call(that, err, cb);
for (var i = 0; i < font.chars.length; i++) {
chars[String.fromCharCode(font.chars[i].id)] = font.chars[i];
}
for (var i = 0; i < font.kernings.length; i++) {
var firstString = String.fromCharCode(font.kernings[i].first);
kernings[firstString] = kernings[firstString] || {};
kernings[firstString][String.fromCharCode(font.kernings[i].second)] = font.kernings[i].amount;
}
loadPages(Path.dirname(file), font.pages).then(function (pages) {
cb(null, {
chars: chars,
kernings: kernings,
pages: pages,
common: font.common,
info: font.info
});
});
});
});
};
function loadPages(dir, pages) {
var newPages = pages.map(function (page) {
return Jimp.read(dir + '/' + page);
});
return Promise.all(newPages);
}
/**
* Draws a text on a image on a given boundary
* @param font a bitmap font loaded from `Jimp.loadFont` command
* @param x the x position to start drawing the text
* @param y the y position to start drawing the text
* @param text the text to draw
* @param maxWidth (optional) the boundary width to draw in
* @param (optional) cb a function to call when the text is written
* @returns this for chaining of methods
*/
Jimp.prototype.print = function (font, x, y, text, maxWidth, cb) {
if ("function" == typeof maxWidth && "undefined" == typeof cb) {
cb = maxWidth;
maxWidth = Infinity;
}
if ("undefined" == typeof maxWidth) {
maxWidth = Infinity;
}
if ("object" != typeof font)
return throwError.call(this, "font must be a Jimp loadFont", cb);
if ("number" != typeof x || "number" != typeof y || "number" != typeof maxWidth)
return throwError.call(this, "x, y and maxWidth must be numbers", cb);
if ("string" != typeof text)
return throwError.call(this, "text must be a string", cb);
if ("number" != typeof maxWidth)
return throwError.call(this, "maxWidth must be a number", cb);
var that = this;
var words = text.split(' ');
var line = '';
for (var n = 0; n < words.length; n++) {
var testLine = line + words[n] + ' ';
var testWidth = measureText(font, testLine);
if (testWidth > maxWidth && n > 0) {
that = that.print(font, x, y, line);
line = words[n] + ' ';
y += font.common.lineHeight;
} else {
line = testLine;
}
}
printText.call(this, font, x, y, line);
if (isNodePattern(cb)) return cb.call(this, null, that);
else return that;
};
function printText(font, x, y, text) {
for (var i = 0; i < text.length; i++) {
if (font.chars[text[i]]) {
drawCharacter(this, font, x, y, font.chars[text[i]]);
x += (font.kernings[text[i]] && font.kernings[text[i]][text[i+1]] ? font.kernings[text[i]][text[i+1]] : 0) + (font.chars[text[i]].xadvance || 0);
}
}
};
function drawCharacter(image, font, x, y, char) {
if (char.width > 0 && char.height > 0) {
var imageChar = font.pages[char.page].clone().crop(char.x, char.y, char.width, char.height);
return image.composite(imageChar, x + char.xoffset, y + char.yoffset);
}
return image;
};
function measureText(font, text) {
var x = 0;
for (var i = 0; i < text.length; i++) {
if (font.chars[text[i]]) {
x += font.chars[text[i]].xoffset
+ (font.kernings[text[i]] && font.kernings[text[i]][text[i+1]] ? font.kernings[text[i]][text[i+1]] : 0)
+ (font.chars[text[i]].xadvance || 0);
}
}
return x;
};
/**
* Writes the image to a file
* @param path a path to the destination file (either PNG or JPEG)
* @param (optional) cb a function to call when the image is saved to disk
* @returns this for chaining of methods
*/
Jimp.prototype.write = function (path, cb) {
if ("string" != typeof path)
return throwError.call(this, "path must be a string", cb);
if ("undefined" == typeof cb) cb = function () {};
if ("function" != typeof cb)
return throwError.call(this, "cb must be a function", cb);
var that = this;
var mime = MIME.lookup(path);
this.getBuffer(mime, function(err, buffer) {
if (err) return throwError.call(that, err, cb);
var stream = FS.createWriteStream(path);
stream.on("open", function(fh) {
stream.write(buffer);
stream.end();
}).on("error", function(err) {
return throwError.call(that, err, cb);
});
stream.on("finish", function(fh) {
return cb.call(that, null, that);
});
});
return this;
};
if (process.env.ENVIRONMENT === "BROWSER") {
// For use in a web browser or web worker
var gl;
if (typeof window == "object") gl = window;
if (typeof self == "object") gl = self;
gl.Jimp = Jimp;
gl.Buffer = Buffer;
} else {
module.exports = Jimp;
}
|