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
<?php
/* Class ImageFilter */

/**
 * Classe de traitement d'image prennant à sa charge les traitement de base afin de simplifier au maximum la génération d'image en PHP
 *
 * PHP versions 4 et 5 (GD 1.x et 2.x)
 *
 * Cette classe à été developpé dans le but de simplifier la vie de tous. Libre à vous de l'inclure dans vos projet.
 * Une seule limitation, je vous serez reconnaissant de me tenir au courant des éventuelles corrections,
 * modifications, ajouts que vous pourriez faire afin que je puisse les intégrés au projet initial.
 *
 * @category    Traitement des images
 * @author      Delestre Mathieu (http://ldbglobe.fried-rice.net/)
 * @author      Benoit clerc     (http://www.zeubeubeu.net/)
 * @author      TeddyBer         (http://ber.free.fr/)
 * @version     1.1a
 * @link        http://ldbglobe.fried-rice.net/blog/2005/03/13/41-traitement-des-images-en-php
 * @since       Disponnible depuis octobre 2004
 * 
 */

/**
 * Exemple d'utilisation
 * 
 * $IF=new ImageFilter;
 * $IF->loadImage('test.png');
 * $IF->resize('200%','','force',true);
 * $IF->setColorsToWork(16); // default = 256
 * $IF->sepia();
 * $IF->mosaic(3);
 * $IF3->output('PNG');
 *
 */

class ImageFilter
{
    
/**
     * $colorsToWork :
     * détermine le nombre de couleur par défaut sur lequel travaillerons les filtres
     * Mettre une valeur faible peut avoir des comportement étonnant
     * selon la version de la librairie et de la plateforme d'execution.
     * En effet si manifestement sous Windows les couleurs sont bien choisit (l'image resultante est plutot fidèle)
     * sous Linux le choix est parfois "particulier" et il n'est pas rare d'obtenir un image au teintes
     * trop claire ou trop sombre (parfois même toutes identiques > donc plus d'image ^^)
     * 
     * $GD_VERSION : Peut prendre la valeur 1 ou 2 selon la version de la librairie GD installé sur le serveur
     * 
     */
    
var $GD_VERSION=2
    var 
$colorsToWork 256

    function 
ImageFilter()
    {
        
$this->resourceImage=NULL;
    }
    
    function 
setColorsToWork($nb)
    {
        
$this->colorsToWork=$nb;
    }
    
    function 
clear()
    {
        
imagedestroy($this->resourceImage);
    }
    
    
/*
     * Création d'une image vierge 
     * $w=largeur $h=hauteur
     *
     */
    
function createImage($w,$h)
    {
        
$this->resourceImage $this->imagecreate($w,$h);
    }
    
    
/*
     * Chargement d'une image depuis un fichier
     *
     */
    
function loadImage($path)
    {
        
$this->resourceImage $this->loadImageFile($path);
        return 
is_resource($this->resourceImage);
    }
    
    
/*
     * Méthode privé (pas vraiment possible en PHP4) gérant l'ouverture et la mise en mémoire d'une image depuis un fichier
     * utilisé entre autre par loadImage(...)  et Stamp(...)
     *
     */
    
function loadImageFile($path)
    {
        
$info=getimagesize($path);
        switch(
$info[2])
        {
            case 
:
                return 
imagecreatefrompng($path);
            case 
:
                return 
imageCreateFromJpeg($path);
            case 
:
                return 
imagecreatefromgif($path);
            default : 
                return 
false;
        }
    }
    
    
/*
     * Méthode de lecture des dimension de l'image actuellement en court de traitement
     * il est aussi possible de lui passer en paramètre un objet de type image
     *
     */
    
function getImageSize($img=NULL)
    {
        if(
is_resource($img))
        {
            return array(
                
'w'=>imagesx($img),
                
'h'=>imagesy($img)
            );
        }
        else
        {
            return array(
                
'w'=>imagesx($this->resourceImage),
                
'h'=>imagesy($this->resourceImage)
            );
        }
    }

    
/*
     * Méthode de sorti
     * Il est possible de générer soit des PNG soit des JPEG (gestion du niveau de qualité)
     * l'image peut soit être envoyé soit en flux direct, soit enregistré dans un fichier
     * ex:
     * $IF->output('JPEG',NULL,NULL,80); // JPEG Q80 en flux direct
     * $IF->output('JPEG','cache.jpg',false,80); // JPEG Q80 enregistré dans cache.jpg sans écrasement si déjà existant
     */
    
function output($type='PNG',$file=NULL,$overwrite=true,$JPG_Q=90)
    {
        if(
$file==NULL)
        {
            
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
            
header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
            
header('Pragma: no-cache');
            switch(
$type)
            {
                case 
'PNG' :
                    
header ('Content-type: image/png');
                    
imagepng($this->resourceImage);
                    return 
true;
                case 
'JPEG' 
                    
header ('Content-type: image/jpeg');
                    
imagejpeg($this->resourceImage,NULL,$JPG_Q);
                    return 
true;
                default :
                    return 
false;
            }
        }
        else
        {
            if(
$overwrite or !file_exists($file))
            {
                switch(
$type)
                {
                    case 
'PNG' :
                        return 
imagepng($this->resourceImage,$file);
                    case 
'JPEG' 
                        return 
imagejpeg($this->resourceImage,$file,$JPG_Q);
                    default :
                        return 
false;
                }
            }
        }
    }
    
    
/*
     * Méthode de découpe
     * ex
     * $IF->crop(10,10,50,50) // découpe l'image courante depuis le point 10,10 sur une zone de 50x50 pixel
     * l'image courante devient l'élément découpé
     */
    
function crop($X,$Y,$WIDTH,$HEIGHT)
    {
        if(
min($WIDTH,$HEIGHT)==0)
            return 
false;

        
$img2=$this->imagecreate($WIDTH,$HEIGHT);
        
$this->imagecopyresampled($img2,$this->resourceImage,0,0,$X,$Y,$WIDTH,$HEIGHT,$WIDTH,$HEIGHT);
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
        return 
true;
    }
    
    
/**
     * Méthode de redimensionnement.
     * 
     * Les deux paramètre $WIDTH et $HEIGHT peuvent être précisé soit en pixel (70) soit en % ('70%')
     * 
     * 3 mode sont possibles : "force", "crop" ou "ratio"
     *    - force = par déformation
     *    - crop = par recadrage au centre
     *    - ratio = par conservation de l'aspect ratio ($WIDTH et $HEIGHT = Boite de travail) 
     * 
     * Le paramètre expand permet de préciser si les agrandissement sont autorisé
    **/
    
function resize($WIDTH,$HEIGHT,$MODE='force',$EXPAND=false)
    {
        
$info=$this->getImageSize();
        
$imgWidth=$info['w'];
        
$imgHeight=$info['h'];

        
$ratio=$imgWidth/$imgHeight;
    
        
//gestion des dimension en %
        
if(strpos($WIDTH,'%',0))
            
$WIDTH=$imgWidth $WIDTH 100;
        if(
strpos($HEIGHT,'%',0))
            
$HEIGHT=$imgHeight $HEIGHT 100;
    
        
//si pas de dimension précisées alors echec
        
if($WIDTH==&& $HEIGHT==0)
            return 
false;
            
        
//si jamais une dimension = 0 on détermine la valeur la plus approprié.
        
if(min($WIDTH,$HEIGHT)==0)
        {
            switch(
$MODE)
            {
                case 
'crop' //on coupe en carré
                    
$WIDTH=$HEIGHT=max($WIDTH,$HEIGHT);
                    break;
                    
                case 
'force'//on passe en ratio pour éviter les déformation
                    
$MODE='ratio';
                    
                case 
'ratio' //on prend une taille très grand pour ne pas limiter sur la cote non précisé
                    
if($WIDTH==0)
                        
$WIDTH=9999;
                    else
                        
$HEIGHT=9999;                    
                    break;
                    
                default :
                    break;
            }
        }
        
        
//on détermine les dimension du resize ($_w et $_h)
        
if($MODE=='ratio')
        {
            
$_w=99999;
            if(
$HEIGHT>0)
            {
                
$_h=$HEIGHT;
                
$_w=$_h*$ratio;
            }
            if(
$WIDTH>&& $_w>$WIDTH)
            {
                
$_w=$WIDTH;
                
$_h=$_w/$ratio;
            }
            
            if(!
$EXPAND && $_w>$imgWidth)
            {
                
$_w=$imgWidth;
                
$_h=$imgHeight;
            }
        }
        else
        {
            
//par découpage de l'image source
            
$_w=$WIDTH;
            
$_h=$HEIGHT;
        }
        
        if(
$MODE=='force')
        {
            if(!
$EXPAND && $_w>$imgWidth)
                
$_w=$imgWidth;
            if(!
$EXPAND && $_h>$imgHeight)                
                
$_h=$imgHeight;
            
            
$cropW=$imgWidth;
            
$cropH=$imgHeight;
            
$decalW=0;
            
$decalH=0;
        }
        else 
//crop
        
{
            
//on détermine ensuite la zone d'affiche réel pour l'image    
            
$innerRatio=$_w/$_h;
            if(
$ratio>=$innerRatio)
            {
                
$cropH=$imgHeight;
                
$cropW=$imgHeight*$innerRatio;
                
$decalH=0;
                
$decalW=($imgWidth-$cropW)/2;
            }
            else
            {
                
$cropW=$imgWidth;
                
$cropH=$imgWidth/$innerRatio;
                
$decalW=0;
                
$decalH=($imgHeight-$cropH)/2;
            }
        }

        
$img2=$this->imagecreate($_w,$_h);
        
$this->imagecopyresampled($img2,$this->resourceImage,0,0,$decalW,$decalH,$_w,$_h,$cropW,$cropH);
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
        return 
true;
    }

    
/**
     * Méthode de remplissage (outils pot de peinture ^^)
     * $IF->fill(10,10,255,255,255) //on rempli au point 10,10 avec du blanc
     */
    
function fill($x,$y,$r,$g,$b)
    {
        
$col=imagecolorallocate($this->resourceImage,$r,$g,$b);
        
imagefill($this->resourceImage,$x,$y,$col);
    }
    
    
/**
     * Méthode de correction de la luminosité et du contraste
     * $IF->lightContrast(10,50) // L et C de -100 à 100
     *
     */
    
function lightContrast($L=0,$C=0)
    {
        if(
$this->GD_VERSION==2)
            
imagetruecolortopalette($this->resourceImagetrue$this->colorsToWork);

        
$numColors imagecolorstotal($this->resourceImage);
        
        for (
$x=0$x<$numColors$x++)
        {
            
$src_colors     imagecolorsforindex($this->resourceImage,$x);
            
$r=$src_colors["red"];
            
$g=$src_colors["green"];
            
$b=$src_colors["blue"];
            
            
//Contraste:
            
$r round($r $C 100 * ($r-127));
            
$g round($g $C 100 * ($g-127));
            
$b round($b $C 100 * ($b-127));
            
            
//Luminosité :
            
$r round($r * ( $L 100));
            
$g round($g * ( $L 100));
            
$b round($b * ( $L 100));
            
            
$r max(0,min(255,$r));
            
$g max(0,min(255,$g));
            
$b max(0,min(255,$b));
            
            
imagecolorset($this->resourceImage,$x,$r,$g,$b);
        }
        
$this->palettedToTrueColor();
        return 
true;
    }
    
    
/**
     * Génère le négatif de l'image courante
     *
     */
    
function negative()
    {
        if(
$this->GD_VERSION==2)
            
imagetruecolortopalette($this->resourceImagetrue$this->colorsToWork);

        
$numColors imagecolorstotal($this->resourceImage);
        
        for (
$x=0$x<$numColors$x++)
        {
            
$src_colors     imagecolorsforindex($this->resourceImage,$x);
            
$r              min(255,255-$src_colors["red"]);
            
$g              min(255,255-$src_colors["green"]);
            
$b              min(255,255-$src_colors["blue"]);
            
imagecolorset($this->resourceImage,$x,$r,$g,$b);
        }
        
$this->palettedToTrueColor();
        return 
true;
    }
    
    
/**
     * Modification de teinte sur l'image courante
     * whiteness = correction de la luminosité (un décalage peut être introduit lors du changement de teinte)
     * decal R,G,B = décalage de teinte sur les 3 cannaux
     *
     */
    
function colorize($whiteness$decalR$decalG$decalB)
    {
        if(
$this->GD_VERSION==2)
            
imagetruecolortopalette($this->resourceImagetrue$this->colorsToWork);
            
        
$numColors imagecolorstotal($this->resourceImage);
        
        for (
$x=0$x<$numColors$x++)
        {
            
$src_colors     imagecolorsforindex($this->resourceImage,$x);
            
$luminance        = ($src_colors["red"]+$src_colors["green"]+$src_colors["blue"])/3;
            
$r              max(0,min(255,$src_colors["red"]+$decalR));
            
$g              max(0,min(255,$src_colors["green"]+$decalG));
            
$b              max(0,min(255,$src_colors["blue"]+$decalB));

            
$luminance2        = ($r+$g+$b)/3;
            
$r                max(0,min(255,$r*($luminance/$luminance2)+3+$whiteness));
            
$g                max(0,min(255,$g*($luminance/$luminance2)+3+$whiteness));
            
$b                max(0,min(255,$b*($luminance/$luminance2)+3+$whiteness));

            
imagecolorset($this->resourceImage,$x,$r,$g,$b);
        }
        
$this->palettedToTrueColor();
        return 
true;
    }
    
    
/**
     * Désaturation de l'image courante
     *
     */
    
function grayscale($taux=1)
    {
        if(
$this->GD_VERSION==2)
            
imagetruecolortopalette($this->resourceImagetrue$this->colorsToWork);
            
        
$numColors imagecolorstotal($this->resourceImage);
        
        for (
$x=0$x<$numColors$x++)
        {
            
$src_colors     imagecolorsforindex($this->resourceImage,$x);
            
$new_color      min(255abs( ( $src_colors["red"] + $src_colors["green"] + $src_colors["blue"] ) / ) + );
            
$r                min(255abs$src_colors["red"]   * ($taux)  + $new_color $taux ) );
            
$g                min(255abs$src_colors["green"] * ($taux)  + $new_color $taux ) );
            
$b                min(255abs$src_colors["blue"]  * ($taux)  + $new_color $taux ) );
            
imagecolorset($this->resourceImage,$x,$r,$g,$b);
        }
        
$this->palettedToTrueColor();
        return 
true;
    }
    
    
/**
     * Modification de teinte pré-réglé pour réaliser l'effet sepia
     *
     */
    
function sepia()
    {
        
$this->grayscale();
        return 
$this->colorize(1025560, -10);
    }
    
    
/**
     * Pixelisation de l'image courante à la taille choisit
     * Par défault la mosaic sera carré $w=$h mais il est possible en précisant 2 paramètre de générer des blocs réctangulaires
     *
     */
    
function mosaic($wSize,$hSize=0)
    {
        if(
$hSize<=0)
        {
            
$hSize=$wSize;
        }

        if(
$wSize>and $hSize>0)
        {
            
$info=$this->getImageSize();
            
$imgWidth=$info['w'];
            
$imgHeight=$info['h'];
            
            
$imgWidth2=floor($imgWidth/$wSize);
            
$imgHeight2=floor($imgHeight/$hSize);
            
            
$img2=$this->imagecreate($imgWidth2,$imgHeight2);
            
imagecopyresized($img2,$this->resourceImage,0,0,0,0,$imgWidth2,$imgHeight2,$imgWidth,$imgHeight);
            
imagecopyresized($this->resourceImage,$img2,0,0,0,0,$imgWidth,$imgHeight,$imgWidth2-1,$imgHeight2-1);
            
imagedestroy($img2);

            return 
true;
        }
        else
        {
            return 
false;
        }
    }
    
    
/**
     * Application d'un tampon sur l'image courante.
     *
     * le tampon peut être soit un objet image (généré ou non via la classe ImageFilter), soit un fichier 
     * (meilleur méthode pour préserver les couleurs et transparence)
     *
     * x et y détermine le point d'aplication du tampon
     * 
     * 6 mode  de fusion sont disponibles (tous les mode respecte la couche alpha - si présent)
     *    - normal = Pix1 <= Pix2
     *    - multiply = Pix1 <= Pix1*Pix2/255 (si Pix2 = 255 = Blanc pas de changement)
     *    - add = Pix1 <= Pix1+Pix2
     *    - difference = Pix1 <= Abs(Pix1-Pix2)
     *    - lighten = Pix1 <= max(Pix1,Pix2)
     *    - darken = Pix1 <= min(Pix1,Pix2)
    **/
    
function stamp($img,$x,$y,$mode='normal')
    {
        
$deleteRes=false;
        if(!
is_resource($img))
        {
            
$img=$this->loadImageFile($img);
            
$deleteRes=true;
        }
        
$this->palettedToTrueColor();
        
$info=$this->getImageSize($img);
        
        if(
$mode=='normal')
        {
            
$this->imagecopyresampled($this->resourceImage,$img,$x,$y,0,0,$info['w'],$info['h'],$info['w'],$info['h']);
        }
        else
        {
            
$infOrg=$this->getImageSize($this->resourceImage);
            
$img2=$this->imagecreate($infOrg['w'],$infOrg['h']);
            
imagecopy($img2,$this->resourceImage,0,0,0,0,$infOrg['w'],$infOrg['h']);

            switch(
$mode)
            {
                case 
'multiply':
                    for(
$px=0;$px<$info['w'];$px++)
                    {
                        for(
$py=0;$py<$info['h'];$py++)
                        {
                            
$rgb1=imagecolorat($this->resourceImage,$px+$x,$py+$y);
                            
$rgb1=imagecolorsforindex($this->resourceImage,$rgb1);
                            
$rgb2=imagecolorat($img,$px,$py);
                            
$rgb2=imagecolorsforindex($img,$rgb2);
                                
                            
$r=min(255,max(0,$rgb1['red']   * max($rgb2['red']   , 2*$rgb2['alpha']) /255 ));
                            
$g=min(255,max(0,$rgb1['green'] * max($rgb2['green'] , 2*$rgb2['alpha']) /255 ));
                            
$b=min(255,max(0,$rgb1['blue']  * max($rgb2['blue']  , 2*$rgb2['alpha']) /255 ));
                            
                            
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                            
imagesetpixel($img2,$px+$x,$py+$y,$cols[$r][$g][$b]);
                        }
                    }
                    break;
                    
                case 
'add':
                    for(
$px=0;$px<$info['w'];$px++)
                    {
                        for(
$py=0;$py<$info['h'];$py++)
                        {
                            
$rgb1=imagecolorat($this->resourceImage,$px+$x,$py+$y);
                            
$rgb1=imagecolorsforindex($this->resourceImage,$rgb1);
                            
$rgb2=imagecolorat($img,$px,$py);
                            
$rgb2=imagecolorsforindex($img,$rgb2);
                                
                            
$r=min(255,max(0,$rgb1['red']   + $rgb2['red']   * (127-$rgb2['alpha'])/127  ));
                            
$g=min(255,max(0,$rgb1['green'] + $rgb2['green'] * (127-$rgb2['alpha'])/127  ));
                            
$b=min(255,max(0,$rgb1['blue']  + $rgb2['blue']  * (127-$rgb2['alpha'])/127  ));
                            
                            
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                            
imagesetpixel($img2,$px+$x,$py+$y,$cols[$r][$g][$b]);
                        }
                    }
                    break;
    
                case 
'difference':
                    for(
$px=0;$px<$info['w'];$px++)
                    {
                        for(
$py=0;$py<$info['h'];$py++)
                        {
                            
$rgb1=imagecolorat($this->resourceImage,$px+$x,$py+$y);
                            
$rgb1=imagecolorsforindex($this->resourceImage,$rgb1);
                            
$rgb2=imagecolorat($img,$px,$py);
                            
$rgb2=imagecolorsforindex($img,$rgb2);
                                
                            
$r=min(255,max(0abs($rgb1['red']   - $rgb2['red']   * (127-$rgb2['alpha'])/127 ) ));
                            
$g=min(255,max(0abs($rgb1['green'] - $rgb2['green'] * (127-$rgb2['alpha'])/127 ) ));
                            
$b=min(255,max(0abs($rgb1['blue']  - $rgb2['blue']  * (127-$rgb2['alpha'])/127 ) ));
                            
                            
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                            
imagesetpixel($img2,$px+$x,$py+$y,$cols[$r][$g][$b]);
                        }
                    }
                    break;
                    
                case 
'lighten':
                    for(
$px=0;$px<$info['w'];$px++)
                    {
                        for(
$py=0;$py<$info['h'];$py++)
                        {
                            
$rgb1=imagecolorat($this->resourceImage,$px+$x,$py+$y);
                            
$rgb1=imagecolorsforindex($this->resourceImage,$rgb1);
                            
$rgb2=imagecolorat($img,$px,$py);
                            
$rgb2=imagecolorsforindex($img,$rgb2);
                                
                            
$r=max($rgb1['red'],$rgb2['red']);
                            
$g=max($rgb1['green'],$rgb2['green']);
                            
$b=max($rgb1['blue'],$rgb2['blue']);
                            
                            
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                            
imagesetpixel($img2,$px+$x,$py+$y,$cols[$r][$g][$b]);
                        }
                    }
                    break;
                    
                case 
'darken':
                    for(
$px=0;$px<$info['w'];$px++)
                    {
                        for(
$py=0;$py<$info['h'];$py++)
                        {
                            
$rgb1=imagecolorat($this->resourceImage,$px+$x,$py+$y);
                            
$rgb1=imagecolorsforindex($this->resourceImage,$rgb1);
                            
$rgb2=imagecolorat($img,$px,$py);
                            
$rgb2=imagecolorsforindex($img,$rgb2);
                                
                            
$r=min($rgb1['red'],$rgb2['red']);
                            
$g=min($rgb1['green'],$rgb2['green']);
                            
$b=min($rgb1['blue'],$rgb2['blue']);
                            
                            
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                            
imagesetpixel($img2,$px+$x,$py+$y,$cols[$r][$g][$b]);
                        }
                    }
                    break;
            }
            
imagedestroy($this->resourceImage); //on supprime l'image d'origine
            
$this->resourceImage=$img2// et on la remplace par la version modifié
        
}
        if(
$deleteRes)
        {
            
//on supprime l'image temporaire
            
imagedestroy($img);
        }
        return 
true;
    }
    
    
/**
     * On repasse en mode couleur vrai (24bits)
     * !!! peut entrainer la suppression de la couche alpha
     *
     */
    
function palettedToTrueColor()
    {
        
$info=$this->getImageSize();
        
$img2=$this->imagecreate($info['w'],$info['h']);
        
$this->imagecopyresampled($img2,$this->resourceImage,0,0,0,0,$info['w'],$info['h'],$info['w'],$info['h']);
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
    }
    
    
/**
     * Application d'un filtre 3x3
     * en fonction des paramètres il est alors possible de réaliser des passes hauts, passes bas, etc...
     *
     */
    
function applyMatrix3x3($matrix)
    {
        
$info=$this->getImageSize();
        
$img2=$this->imagecreate($info['w']-2,$info['h']-2);
        
        for(
$x=1;$x<$info['w']-1;$x++)
        {
            for(
$y=1;$y<$info['h']-1;$y++)
            {
                
$r=$g=$b=0;
    
                for(
$Mx=0;$Mx<3;$Mx++)
                {
                    for(
$My=0;$My<3;$My++)
                    {
                        
$rgb=imagecolorat($this->resourceImage,$x-1+$Mx,$y-1+$My);
                    
                        
$r += $matrix[$Mx][$My]*(($rgb >> 16) & 0xFF); //r
                        
$g += $matrix[$Mx][$My]*(($rgb >>  8) & 0xFF); //g
                        
$b += $matrix[$Mx][$My]*(($rgb      ) & 0xFF); //b
                    
}
                }
                
$r=min(255,max(0,$r));
                
$g=min(255,max(0,$g));
                
$b=min(255,max(0,$b));
                
                if(!isset(
$cols[$r][$g][$b]))
                {
                    
//on minimise les allocation de couleur
                    
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                }
                
imagesetpixel($img2,$x-1,$y-1,$cols[$r][$g][$b]);
            }
        }
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
    }
    
    
/**
     * Utilisation du filtre matriciel pour faire un floutage (passe bas)
     *
     */
    
function Blur($k=1)
    {
        
$k*=1/9;
        return 
$this->applyMatrix3x3(array(
                                        array(
$k,$k,$k),
                                        array(
$k,1-9*$k,$k),
                                        array(
$k,$k,$k)
                                    ));
    }

    
/**
     * Utilisation du filtre matriciel pour une detection de contour
     *
     */
    
function Edge($k=1)
    {
        return 
$this->applyMatrix3x3(array(
                                        array(
0,-$k,0),
                                        array(-
$k,1-$k,$k),
                                        array(
0,$k,0)
                                    ));
    }

    
/**
     * Méthode basé sur le filtre matriciel optimisé pour réaliser une accentuation de détail (passe haut)
     *
     */
    
function Sharpen($k=1)
    {
        
$info=$this->getImageSize();
        
        
$img2=$this->imagecreate($info['w']-2,$info['h']-2);
        for(
$x=1;$x<$info['w']-1;$x++)
        {
            for(
$y=1;$y<$info['h']-1;$y++)
            {
                
$rgb[1][0]=imagecolorat($this->resourceImage,$x,$y-1);
                
$rgb[0][1]=imagecolorat($this->resourceImage,$x-1,$y);
                
$rgb[1][1]=imagecolorat($this->resourceImage,$x,$y);
                
$rgb[2][1]=imagecolorat($this->resourceImage,$x+1,$y);
                
$rgb[1][2]=imagecolorat($this->resourceImage,$x,$y+1);

                
$r =      -$k *(($rgb[1][0] >> 16) & 0xFF) +
                         -
$k *(($rgb[0][1] >> 16) & 0xFF) +
                    (
1+4*$k) *(($rgb[1][1] >> 16) & 0xFF) +
                         -
$k *(($rgb[2][1] >> 16) & 0xFF) +
                         -
$k *(($rgb[1][2] >> 16) & 0xFF) ;

                
$g =      -$k *(($rgb[1][0] >> 8) & 0xFF) +
                         -
$k *(($rgb[0][1] >> 8) & 0xFF) +
                    (
1+4*$k) *(($rgb[1][1] >> 8) & 0xFF) +
                         -
$k *(($rgb[2][1] >> 8) & 0xFF) +
                         -
$k *(($rgb[1][2] >> 8) & 0xFF) ;

                
$b =      -$k *($rgb[1][0] & 0xFF) +
                         -
$k *($rgb[0][1] & 0xFF) +
                    (
1+4*$k) *($rgb[1][1] & 0xFF) +
                         -
$k *($rgb[2][1] & 0xFF) +
                         -
$k *($rgb[1][2] & 0xFF) ;

                
$r=min(255,max(0,$r));
                
$g=min(255,max(0,$g));
                
$b=min(255,max(0,$b));

                if(!
$cols[$r][$g][$b])
                {
                    
//on minimise les allocation de couleur
                    
$cols[$r][$g][$b]=imagecolorallocate($img2,$r,$g,$b);
                }
                
imagesetpixel($img2,$x-1,$y-1,$cols[$r][$g][$b]);
            }
        }
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
        return 
true;
    }
    
    
/**
     * Opération de mirroir sur l'image (horizontale ou vertical)
     * type de flip h > horizontal, v > vertical
     *
     */
    
function flip($flip='h')
    {
        
$info $this->getImageSize();
        
$img2 $this->imagecreate($info['w'],$info['h']);
        
        if ( 
$flip == 'v' )
        {
            for ( 
$i=0$i<$info['h']; $i++ ) imagecopy($img2,$this->resourceImage,0,$info['h']-1-$i,0,$i,$info['w'],1);
        }
        elseif ( 
$flip == 'h' )
        {
            for ( 
$i=0$i<$info['w']; $i++ ) imagecopy($img2,$this->resourceImage,$info['w']-1-$i,0,$i,0,1,$info['h']);
        }
        else return 
false;
        
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
        
        return 
true;
    }
    
    
/**
     * Opération rotation
     * angle de rotation (90°, 180°, 270°)
     *
     */
    
function rotation($angle=90)
    {
        
$this->palettedToTrueColor();
        
        
$info $this->getImageSize();
        
$img2 $angle == 180 $this->imagecreate($info['w'],$info['h']) : $this->imagecreate($info['h'],$info['w']);
        
        switch ( 
$angle )
        {
            case 
180 :
                for ( 
$j=0$j<$info['h']; $j++)
                {
                    for ( 
$i=0$i<$info['w']; $i++ )
                    {
                        
$c imagecolorat($this->resourceImage,$i,$j);
                        
imagesetpixel($img2,$info['w']-$i-1,$info['h']-$j-1,$c);
                    }
                }                
            break;
            
            case 
270 :
                for ( 
$j=0$j<$info['h']; $j++ )
                {
                    for ( 
$i $info['w']; $i>=0$i-- )
                    {
                        
$c imagecolorat($this->resourceImage,$i,$j);
                        
imagesetpixel($img2,$j,$info['w']-$i-1,$c);
                    }
                }
            break;
            
            case 
90 :
                for ( 
$i 0$i<$info['w']; $i++ )
                {
                    for ( 
$j=0$j<$info['h']; $j++ )
                    {
                        
$c  imagecolorat($this->resourceImage,$i,$j);
                        
imagesetpixel($img2,$info['h']-$j-1,$i,$c);
                    }
                }
            break;
            
            default:
                return 
false;
            break;
        }
        
        
imagedestroy($this->resourceImage);
        
$this->resourceImage=$img2;
        
        return 
true;
    }    
    
    
/**
     * Méthode permettant l'execution automatique d'une série de méthode.
     *
     * $commands=array(
     *     array('filter'=>'loadImage','params'=>array('test.png')),
     *    array('filter'=>'resize','params'=>array('200%','','force',true)),
     *    array('filter'=>'sepia','params'=>array()),
     *    array('filter'=>'mosaic','params'=>array(3)),
     *    array('filter'=>'flip','params'=>array('h')),
     *    array('filter'=>'stamp','params'=>array('testStamp.png',0,0)),
     *    array('filter'=>'rotation','params'=>array('90')),
     *    array('filter'=>'stamp','params'=>array('test.png',0,0,'multiply')),
     *    array('filter'=>'lightContrast','params'=>array(0,100)),
     *    array('filter'=>'output','params'=>array('PNG'))
     * );
     *
     * $IF->batchFilter($commands);
     * 
     **/
    
function batchFilter($commands)
    {
        foreach(
$commands as $command)
        {
            if(
method_exists($this,$command['filter']))
            {
                 
call_user_method_array($command['filter'],$this,$command['params']);
            }
        }
        return 
true;
    }
    
    
/**
     * Méthode de redimesionnement selon la version de librairie GD (1 ou 2)
     * GD 1.x ne gérant pas les images 24bits, elle ne fait pas de ré-échantillonnage sur les redimensionnemnt
     *
     */
    
function imagecopyresampled($out$in$dstX$dstY$srcX$srcY$dstW$dstH$srcW$srcH)
    {
        if(
$this->GD_VERSION==2)
            return 
imagecopyresampled($out$in$dstX$dstY$srcX$srcY$dstW$dstH$srcW$srcH);
        else
            return 
imagecopyresized($out$in$dstX$dstY$srcX$srcY$dstW$dstH$srcW$srcH);
    }

    
/**
     * Méthode de création d'image  selon la version de librairie GD (1 ou 2)
     * GD 1.x ne gère pas les images en 24bits on crée alors une image 256 couleurs
     *
     */    
    
function imagecreate($w,$h)
    {
        if(
$this->GD_VERSION==2)
            return 
imagecreatetruecolor($w,$h);
        else
            return 
imagecreate($w,$h);
    }
}
?>