-
Notifications
You must be signed in to change notification settings - Fork 79
/
index.js
1623 lines (1307 loc) · 66.4 KB
/
index.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
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
'use strict';
var colors = require('colors'),
fs = require('fs'),
glob = require("glob"),
path = require("path"),
execFile = require('child_process').execFile,
exec = require('child_process').exec,
//JPG
jpegtran = require('jpegtran-bin'),
jpegRecompress = require('jpeg-recompress-bin'),
cwebp = require('cwebp-bin'),
mozjpeg = require('mozjpeg'),
guetzli,
jpegoptim,
tinifyjpeg = require("tinify"),
//PNG
pngquant,
optipng,
pngout = require('pngout-bin'),
pngcrush = require('pngcrush-bin'),
tinifypng = require("tinify"),
//SVG
//https://www.npmjs.com/package/svgo
//GIF
gifsicle,
giflossy,
gif2webp = require('./lib/webp'),
//updater = require('./lib/updater'),
mkdirp = require('mkdirp'),
bytes = require('bytes'),
path_gif2webp,
length_files = 0,
lock__length_files = false;
//set DEBUG=*,-not_this
//var debug = require('debug')("glob");
//debug('[File] ');
//var debug_updater = require('debug')("./lib/updater");
var index = function (input, output, option, findfileop, enginejpg, enginepng, enginesvg, enginegif, callback) {
// JPG
if(enginejpg.jpg.engine === "jpegoptim" && jpegoptim === undefined){
if(checkExistsModule('jpegoptim-bin', 'npm install jpegoptim-bin --save') != true){
return false;
}
jpegoptim = require('jpegoptim-bin');
}else
if(enginejpg.jpg.engine === "guetzli" && guetzli === undefined){
if(checkExistsModule('guetzli', 'npm install guetzli --save') != true){
return false;
}
guetzli = require('guetzli');
}
// PNG
if(enginepng.png.engine === "optipng" && optipng === undefined){
if(checkExistsModule('optipng-bin', 'npm install optipng-bin --save') != true){
return false;
}
optipng = require('optipng-bin');
}else
if(enginepng.png.engine === "pngquant" && pngquant === undefined){
if(checkExistsModule('pngquant-bin', 'npm install [email protected] --save') != true){
return false;
}
pngquant = require('pngquant-bin');
}
// GIF
if(enginegif.gif.engine === "gifsicle" && gifsicle === undefined){
if(checkExistsModule('gifsicle', 'npm install [email protected] --save') != true){
return false;
}
gifsicle = require('gifsicle');
}else
if(enginegif.gif.engine === "giflossy" && giflossy === undefined){
if(checkExistsModule('giflossy', 'npm install giflossy --save') != true){
return false;
}
giflossy = require('giflossy');
}
//Updater
//debug_updater('[to]');
//updater(fs, colors, execFile, option.autoupdate);
//debug_updater('[from]');
//--------------------------------------------------------------------------
//Options
//--------------------------------------------------------------------------
if(undefined == option.statistic){
option.statistic = true;
}
if(undefined == option.compress_force){
option.compress_force = false;
}
if(undefined == findfileop){
findfileop = {};
}
if(undefined == option.pathLog){
option.pathLog = './log/compress-images';
}
//--------------------------------------------------------------------------
//JPG
if(false == enginejpg.jpg.engine){
if(/^.*(\.({|{[a-zA-Z,]*,)|\.)(jpg|jpeg)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
console.log(colors.red(" You didn't turn on [enginejpg], but your input path includes the 'jpg' extension; either delete the extension 'jpg' from the input path, or turn on [enginejpg: ['jpegtran'] or ['mozjpeg'] or ['webp'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,png} or src/img/**/*.jpg or src/img/*.jpg ..."));
console.log(colors.red(' Input path: ')+colors.magenta(input));
return callback(true);
}
}else{
//if(!/^.*(\.({|{[a-zA-Z,]*,)|\.)(jpg|jpeg)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
// console.log(colors.red(" You didn't turn on [enginejpg], but your input path includes the 'jpg' extension; either delete the extension 'jpg' from path, or turn on [enginejpg: ['jpegtran'] or ['mozjpeg'] or ['webp'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,png} or src/img/**/*.jpg or src/img/*.jpg ..."));
// console.log(colors.red(' Input path: ')+colors.magenta(input));
// return callback(true);
//}
}
//PNG
if(false == enginepng.png.engine){
if(/^.*(\.({|{[a-zA-Z,]*,)|\.)(png)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
console.log(colors.red(" You didn't turn on [enginepng], but your input path includes the 'png' extension; either delete the extension 'png' from the input path, or turn on [enginepng: ['pngquant'] or ['optipng'] or ['webp'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,png} or src/img/**/*.png or src/img/*.png ..."));
console.log(colors.red(' Input path: ')+colors.magenta(input));
return callback(true);
}
}else{
//if(!/^.*(\.({|{[a-zA-Z,]*,)|\.)(png)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
// console.log(colors.red(" You didn't turn on [enginepng], but your input path includes the 'png' extension; either delete the extension 'png' from path, or turn on [enginepng: ['pngquant'] or ['optipng'] or ['webp'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,png} or src/img/**/*.png or src/img/*.png ..."));
// console.log(colors.red(' Input path: ')+colors.magenta(input));
// return callback(true);
//}
}
//SVG
if(false == enginesvg.svg.engine){
if(/^.*(\.({|{[a-zA-Z,]*,)|\.)(svg)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
console.log(colors.red(" You didn't turn on [enginesvg], but your input path includes the 'svg' extension; either delete the extension 'svg' from the input path, or turn on [enginesvg: ['svgo'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,svg} or src/img/**/*.svg or src/img/*.svg ..."));
console.log(colors.red(' Input path: ')+colors.magenta(input));
return callback(true);
}
}else{
//if(!/^.*(\.({|{[a-zA-Z,]*,)|\.)(svg)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
// console.log(colors.red(" You didn't turn on [enginesvg], but your input path includes the 'svg' extension; either delete the extension 'svg' from path, or turn on [enginesvg: ['svgo'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,svg} or src/img/**/*.svg or src/img/*.svg ..."));
// console.log(colors.red(' Input path: ')+colors.magenta(input));
// return callback(true);
//}
}
//GIF
if(false == enginegif.gif.engine){
if(/^.*(\.({|{[a-zA-Z,]*,)|\.)(gif)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
console.log(colors.red(" You didn't turn on [enginegif], but your input path includes the 'gif' extension; either delete the extension 'gif' from the input path, or turn on [enginegif: ['gifsicle'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,gif} or src/img/**/*.gif or src/img/*.gif ..."));
console.log(colors.red(' Input path: ')+colors.magenta(input));
return callback(true);
}
}else{
//if(!/^.*(\.({|{[a-zA-Z,]*,)|\.)(gif)(,[,a-zA-Z]*}|}|)$/gi.test(input)){
// console.log(colors.red(" You didn't turn on [enginegif], but your input path includes the 'gif' extension; either delete the extension 'gif' from path, or turn on [enginegif: ['gifsicle'] or other]. Alternatively, your input path may be malformed!: Examples: src/img/**/*.{jpg,JPG,jpeg,JPEG,gif} or src/img/**/*.gif or src/img/*.gif ..."));
// console.log(colors.red(' Input path: ')+colors.magenta(input));
// return callback(true);
//}
}
//Init
if(enginejpg.jpg.engine == 'tinify'){
if(undefined != enginejpg.jpg.key){
tinifyjpeg.key = enginejpg.jpg.key;
}else{
console.log(colors.red(" You have not set an API KEY for the [tinify] API. Example: {jpg: {engine: 'tinify', key: 'K_lYTUGjgbHJBGRFpXnhJBkbvLHKblhBhM', command: false}}"));
return callback(true);
}
}else if(enginepng.png.engine == 'tinify'){
if(undefined != enginepng.png.key){
tinifypng.key = enginepng.png.key;
}else{
console.log(colors.red(" You have not set an API KEY for the [tinify] API. Example: {jpg: {engine: 'tinify', key: 'K_lYTUGjgbHJBGRFpXnhJBkbvLHKblhBhM', command: false}}"));
return callback(true);
}
}
if(enginegif.gif.engine == 'gif2webp'){
path_gif2webp = gif2webp.getPathGifwebp();
}
var filename, path_in_part, test_8;
/*
path_in_part - путь типа - "src/img/", путь с звёздочками обрезается
*/
//[Определяем, содержит ли путь **
if(/\*/.test(input)){
path_in_part = input.replace(/(\*\*.+|\*.+)/g, '');
}else{
filename = input.split("/").pop();
}
//Если указан конкретный файл то не проводим поиск всех файлов в папке
if(path_in_part != undefined && path_in_part != null){
///////////////////////////////////////////////////////////////////////
//Проводим поиск всех файлов
///////////////////////////////////////////////////////////////////////
var path_out_new, ext; //полный путь вывода файла
glob(input, findfileop, function (er, files) {
if(files != null || er == null){
if(files.length > 0){
length_files = files.length;
for (var i = 0; files.length > i; i++) {
path_out_new = files[i].replace(new RegExp(path_in_part, "g"), output);
//--------------------------------------------
ext = getExtensionFile(path_out_new);
if(enginepng.png.engine == 'webp'){
if(ext == 'png'){
//Заменяем расширение на - webp
path_out_new = path_out_new.replace(/\.[a-zA-Z]+$/g, '.webp');
}
}
if(enginejpg.jpg.engine == 'webp'){
if(ext == 'jpg' || ext == 'jpeg' || ext == 'JPG' || ext == 'JPEG'){
//Заменяем расширение на - webp
path_out_new = path_out_new.replace(/\.[a-zA-Z]+$/g, '.webp');
}
}
if(enginegif.gif.engine == 'gif2webp'){
if(ext == 'gif'){
//Заменяем расширение на - webp
path_out_new = path_out_new.replace(/\.[a-zA-Z]+$/g, '.webp');
}
}
//--------------------------------------------
//Вызываем метод процесса сжатия
CompressorProcess(files[i], path_out_new);
}
}else{
console.log(colors.red(" Directory is empty!: ")+colors.magenta(input));
writeLogError(" Directory is empty!: ", input, '-', '-');
}
}else{
console.error(er);
return callback(er);
}
});
}else if(filename != undefined && filename != null){
///////////////////////////////////////////////////////////////////////
//Не проводим поиск всех файлов
///////////////////////////////////////////////////////////////////////
var path_out_new = output+filename; //полный путь вывода файла
lock__length_files = true;
if(enginejpg.jpg.engine == 'webp' || enginegif.gif.engine == 'gif2webp'){
//Заменяем расширение на - webp
path_out_new = path_out_new.replace(/\.[a-zA-Z]+$/g, '.webp');
}
//Вызываем метод процесса сжатия
CompressorProcess(input, path_out_new);
}
/*
input - ссылка на начальный файл
path_out_new - Полный путь с самим файлом результата сжатия - test/dir/for/file.jpg
*/
function CompressorProcess(input, path_out_new){
//Если включена опция принудительного сжатия уже сжатыйх файлов, то сжимаем их, инчане нет.
if(!option.compress_force){
//Узнаём, сжимали или мы ранее этот файл. Для этого проверяем есть ли он в output
if(!checkFile(path_out_new)){
//Проверяем существования файла перед сжатием
if(!checkFile(input)){
console.log(colors.red(" File does not exist!"));
writeLogError("File does not exist!", input, path_out_new, '-');
//Провееряем обновление
checkUpdate();
if(length_files === 0){
return callback(null, true);
}
return false;
}
//Убираем у новой директории имя файла
var output = getPath(path_out_new), extension_f;
//Проверяем наличие необходимых директорий для его создания
checkDir(output, function(err, made) {
if(err){
console.log(colors.red('-----------------------------------'));
console.log(colors.red('An error occurred!'));
console.error(err)
console.log(colors.red('-----------------------------------'));
return callback(err);
}else{
if(null != made && option.statistic === true){
//Выводим лог о том что была создана новая директория
log_create_wasdir(output);
}
//Узнаём расширение файла
extension_f = getExtensionFile(input);
if(extension_f == 'jpg' || extension_f == 'JPG' || extension_f == 'jpeg' || extension_f == 'JPEG'){
//JPG Сжимаем файл
CompressionFileJpg(input, path_out_new, function(size_in, size_output, percent, err){
outputResult(input, path_out_new, enginejpg.jpg.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginejpg.jpg.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'png' || extension_f == 'PNG'){
//PNG Сжимаем файл
CompressionFilePng(input, path_out_new, function(size_in, size_output, percent, err){
outputResult(input, path_out_new, enginepng.png.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginepng.png.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'svg'){
//SVG Сжимаем файл
CompressionFileSvg(input, path_out_new, function(size_in, size_output, percent){
outputResult(input, path_out_new, enginesvg.svg.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginesvg.svg.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'gif'){
//GIF Сжимаем файл
CompressionFileGif(input, path_out_new, function(size_in, size_output, percent){
outputResult(input, path_out_new, enginegif.gif.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginegif.gif.engine, size_in, size_output, percent, err);
});
});
}
}
});
}else{
//Провееряем обновление
checkUpdate();
if(length_files === 0){
return callback(null, true);
}//else{
//return callback(null, false);
//}
}
}else{
//Проверяем существования файла перед сжатием
if(!checkFile(input)){
console.log(colors.red(" File does not exist!"));
writeLogError("File does not exist!", input, path_out_new, '-');
//Провееряем обновление
checkUpdate();
if(length_files === 0){
return callback(null, true);
}
return false;
}
//Убираем у новой директории имя файла
var output = getPath(path_out_new);
//Проверяем есть ли необходимая директория
checkDir(output, function(err, made){
if(err){
console.log(colors.red('-----------------------------------'));
console.log(colors.red('An error occurred!'));
console.error(err)
console.log(colors.red('-----------------------------------'));
}else{
if(null != made && option.statistic === true){
log_create_wasdir(output);
}
//Узнаём расширение файла
extension_f = getExtensionFile(input);
if(extension_f == 'jpg' || extension_f == 'JPG' || extension_f == 'jpeg' || extension_f == 'JPEG'){
//JPG Сжимаем файл
CompressionFileJpg(input, path_out_new, function(size_in, size_output, percent, err){
outputResult(input, path_out_new, enginejpg.jpg.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginejpg.jpg.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'png' || extension_f == 'PNG'){
//PNG Сжимаем файл
CompressionFilePng(input, path_out_new, function(size_in, size_output, percent, err){
outputResult(input, path_out_new, enginepng.png.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginepng.png.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'svg'){
//SVG Сжимаем файл
CompressionFileSvg(input, path_out_new, function(size_in, size_output, percent){
outputResult(input, path_out_new, enginesvg.svg.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginesvg.svg.engine, size_in, size_output, percent, err);
});
});
}else if(extension_f == 'gif'){
//GIF Сжимаем файл
CompressionFileGif(input, path_out_new, function(size_in, size_output, percent){
outputResult(input, path_out_new, enginegif.gif.engine, size_in, size_output, percent, err, function(error, completed){
outputResultcallback(error, completed, input, path_out_new, enginegif.gif.engine, size_in, size_output, percent, err);
});
});
}
}
});
}
}
function outputResultcallback(error, completed, input, path_out_new, engine, size_in, size_output, percent, err){
let statistic = {};
statistic.input = input;
statistic.path_out_new = path_out_new;
statistic.algorithm = engine;
statistic.size_in = size_in;
statistic.size_output = size_output;
statistic.percent = percent;
statistic.err = err;
return callback(error, completed, statistic);
}
//Сжатие JPG файла
function CompressionFileJpg(input, output, callback){
var size_in, size_output, percent;
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Размер файла пред сжатием
size_in = getFilesizeInBytes(input);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
if(enginejpg.jpg.engine == 'jpegtran'){
/*
[-copy none] - убирает все метаданные из исходного файла
[-optimize] - оптимизирует изображение
[-progressive] - Это такой тип JPG, который при загрузке страницы сначала показывает общие очертания, потом догружается и доводит качество картинки до максимального. Очень удобно для медленного мобильного интернета, и потому его необходимо использовать.
Example:
'-progressive', '-copy', 'none', '-optimize' 'output', 'input'
*/
var array;
if(false != enginejpg.jpg.command){
array = enginejpg.jpg.command.concat(['-outfile', output, input]);
}else{
array = ['-outfile', output, input];
}
execFile(jpegtran, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'mozjpeg'){
/*
[-quality] - указывается качество (не обязательно)
Example:
['-quality', '10']
{jpg: {engine: 'mozjpeg', command: false}}
{jpg: {engine: 'mozjpeg', command: ['-quality', '10']}}
*/
var array;
if(false != enginejpg.jpg.command){
array = enginejpg.jpg.command.concat(['-outfile', output, input]);
}else{
array = ['-outfile', output, input];
}
//var array = enginejpg.jpg.command.concat(output, input);
execFile(mozjpeg, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'webp'){
/*
Основная команда:
'-o' - указывает файл для вывода
Дополнительные команды (некоторые, остальные ниже в ссылках):
-q - from 0 to 100. The default is 75.
['-q', '100']
Документация - как использовать
https://developers.google.com/speed/webp/docs/using
//Команды
https://developers.google.com/speed/webp/docs/cwebp
Example
'input.jpg', '-o', 'output.webp'
-q 1 'input.jpg', '-o', 'output.webp'
{jpg: {engine: 'webp', command: false}}
{jpg: {engine: 'webp', command: ['-q', '100']}}
*/
var array;
if(false != enginejpg.jpg.command){
array = enginejpg.jpg.command.concat(input, ['-o'], output);
}else{
array = [input, '-o', output];
}
execFile(cwebp, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'guetzli'){
/*
'--quality', '84'
Проблема с сжиманием (очень долго сжимает) на win 8.1 64 - https://github.com/google/guetzli/issues/238
https://github.com/google/guetzli
Example:
base: ['input.jpg', 'output.jpg']
*/
var array;
if(false != enginejpg.jpg.command){
array = enginejpg.jpg.command.concat(input, output);
}else{
array = [input].concat(output);
}
execFile(guetzli, array, err => {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'jpegRecompress'){
/*
https://github.com/danielgtaylor/jpeg-archive
Example:
base: ['input.jpg', 'output.jpg']
['--quality high', '--min 60', 'input.jpg', 'output.jpg']
*/
var array;
if(false != enginejpg.jpg.command){
array = enginejpg.jpg.command.concat(input, output);
}else{
array = [input].concat(output);
}
execFile(jpegRecompress, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'jpegoptim'){
/*
-o, --overwrite overwrite target file even if it exists
--strip-all
--all-progressive - прогерссивное изображение
-f, --force force optimization
-d - директория вывода изображения
-m[0..100], --max=[0..100]
set maximum image quality factor (disables lossless
optimization mode, which is by default on)
//Примечание:
//https://github.com/tjko/jpegoptim/issues/54
//Наблюдается проблема, на Windows 8.1 x64 выводит файл изображение с изменённым именем и расширением .tmp
Это происходит из-за неправильного слэша. Вот правильный формат: "J:\111\jpegoptim-64.exe" --all-progressive -d b\1 a\olQ9Dqr.jpg
https://github.com/tjko/jpegoptim
Example:
base:
['input.jpg']
['--all-progressive', '-d', 'output.jpg', 'input.jpg']
*/
var array;
if(false != enginejpg.jpg.command){
//Если установлена опция вывода файлов в отдельную дерикторию, то добавляем в массив папку для вывода
const input_2 = input.replace(/\//g, '\\');
if(cheopJpegoptim(enginejpg.jpg.command)){
//обрезаем имя файла
let output_2 = getPath(output).replace(/\/$/g, '');
output_2 = output_2.replace(/\//g, '\\');
array = enginejpg.jpg.command.concat(output_2, input_2);
}else{
array = enginejpg.jpg.command.concat(input_2);
}
}else{
array = [input_2];
}
execFile(jpegoptim, array, err => {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(0, 0, 0, err, null);
}
return callback(null, null, null, null);
});
}else if(enginejpg.jpg.engine == 'tinify'){
/*
https://tinypng.com/developers/reference/nodejs
https://github.com/tinify/tinify-nodejs
Example:
base:
{jpg: {engine: 'tinify', key: "api_key", command: false}}
{jpg: {engine: 'tinify', key: "api_key", command: ['copyright', 'creation', 'location']}}
Можно запускать без опций, но существуют опции которые оставляют метаданные в изображении,
такие как авторство, время создания изображения и локаль, но тесты показали
что эта функция возможно не работает.
*/
if(option.statistic){
if(false != enginejpg.jpg.command){
console.log(colors.red("Commands with [thinify] dont working with turn on statistic - 'statistic: true'! You can will turn off statistic 'statistic: false' and use commands for [tinify]. Or you can will set 'command: false' for [tinify]."));
}
//-------------------------------------------------
fs.readFile(input, function(err, sourceData) {
if(err === null){
//--------------------------------------
if (err){
throw err;
}
tinifyjpeg.fromBuffer(sourceData).toBuffer(function(err, resultData) {
if (err){
throw err;
}
fs.writeFile(output, resultData, function(err) {
if(err) {
return console.log(err);
}
//- - - - - - - - - - - - - - - - - - - - - - - -
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
});
});
//--------------------------------------
}else{
return callback(0, 0, 0, err);
}
});
//-------------------------------------------------
}else{
var array;
if(false != enginejpg.jpg.command){
if(enginejpg.jpg.command.length === 1){
var source = tinifyjpeg.fromFile(input);
var copyrighted = source.preserve(enginejpg.jpg.command[0]);
copyrighted.toFile(output);
}else if(enginejpg.jpg.command.length === 2){
var source = tinifyjpeg.fromFile(input);
var copyrighted = source.preserve(enginejpg.jpg.command[0], enginejpg.jpg.command[1]);
copyrighted.toFile(output);
}else if(enginejpg.jpg.command.length === 3){
var source = tinifyjpeg.fromFile(input);
var copyrighted = source.preserve(enginejpg.jpg.command[0], enginejpg.jpg.command[1], enginejpg.jpg.command[2]);
copyrighted.toFile(output);
}
}else{
tinifyjpeg.fromFile(input).toFile(output);
}
}
}else{
console.log(colors.red("Don't [jpg] find ["+enginejpg.jpg.engine+"] engine!"));
}
}
//Сжатие PNG
function CompressionFilePng(input, output, callback){
var size_in, size_output, percent;
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Размер файла пред сжатием
size_in = getFilesizeInBytes(input);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
if(enginepng.png.engine == 'pngquant'){
/*
--quality=0-20 - min and max are numbers in range 0 (worst) to 100 (perfect), similar to JPEG.
Sites:
https://pngquant.org
https://github.com/imagemin/pngquant-bin
Example:
base:
['-o', output, input]
*/
var array;
if(false != enginepng.png.command){
if(enginepng.png.command.includes('-o')){
array = enginepng.png.command.concat([output, input]);
}else{
array = enginepng.png.command.concat([input]);
}
}else{
array = ['-o', output, input];
}
execFile(pngquant, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(null, null, null, err);
}
return callback(null, null, null, null);
});
}else if(enginepng.png.engine == 'optipng'){
/*
Sites:
http://optipng.sourceforge.net
https://github.com/imagemin/optipng-bin
Example:
base:
['-o', output, input]
*/
var array;
if(false != enginepng.png.command){
array = enginepng.png.command.concat(['-out', output, input]);
}else{
array = ['-out', output, input];
}
execFile(optipng, array, function (err) {
if(err === null){
if(option.statistic){
//Block statistic
//- - - - - - - - - - - - - - - - - - - - - - - -
//Узнаем размер файла после сжатия
size_output = getFilesizeInBytes(output);
//Находим на сколько процентов удалось сжать файл
percent = size_output / size_in;
percent = percent * 100;
percent = 100 - percent;
percent = Math.round(percent * 100) / 100;
return callback(size_in, size_output, percent, null);
//- - - - - - - - - - - - - - - - - - - - - - - -
}
}else{
return callback(null, null, null, err);
}
return callback(null, null, null, null);
});
}else if(enginepng.png.engine == 'webp'){
/*
Основная команда:
'-o' - указывает файл для вывода
Дополнительные команды (некоторые, остальные ниже в ссылках):
-q - from 0 to 100. The default is 75.
Документация - как использовать
https://developers.google.com/speed/webp/docs/using
//Команды
https://developers.google.com/speed/webp/docs/cwebp
Example
'input.jpg', '-o', 'output.webp'
command: ['-o'] -- базовый массив с базовой командой
-q 1 'input.jpg', '-o', 'output.webp'
command: ['-o', '-q', '1']
*/
var array;
if(false != enginepng.png.command){
array = enginepng.png.command.concat(input, ['-o'], output);
}else{
array = [input, '-o', output];
}
execFile(cwebp, array, function (err) {