-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYiiImageProvider.php
981 lines (889 loc) · 32.2 KB
/
YiiImageProvider.php
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
<?php
/*
* This file is part of the YiiImage package.
*
* (c) Igor Golovanov <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* @author Igor Golovanov <[email protected]>
*
*
* @property-read YiiImageBox $size Current image size.
*
* @property-write string|array|Closure $onBeforeSave Event {@link YiiImageProvider::onBeforeSave}
* @property-read CList $onBeforeSave Event {@link YiiImageProvider::onBeforeSave}
* @property-write string|array|Closure $onAfterSave Event {@link YiiImageProvider::onAfterSave}
* @property-read CList $onAfterSave Event {@link YiiImageProvider::onAfterSave}
* @property-write string|array|Closure $onBeforeResize Event {@link YiiImageProvider::onBeforeResize}
* @property-read CList $onBeforeResize Event {@link YiiImageProvider::onBeforeResize}
* @property-write string|array|Closure $onAfterResize Event {@link YiiImageProvider::onAfterResize}
* @property-read CList $onAfterResize Event {@link YiiImageProvider::onAfterResize}
* @property-write string|array|Closure $onBeforeCrop Event {@link YiiImageProvider::onBeforeCrop}
* @property-read CList $onBeforeCrop Event {@link YiiImageProvider::onBeforeCrop}
* @property-write string|array|Closure $onAfterCrop Event {@link YiiImageProvider::onAfterCrop}
* @property-read CList $onAfterCrop Event {@link YiiImageProvider::onAfterCrop}
* @property-write string|array|Closure $onBeforeRotate Event {@link YiiImageProvider::onBeforeRotate}
* @property-read CList $onBeforeRotate Event {@link YiiImageProvider::onBeforeRotate}
* @property-write string|array|Closure $onAfterRotate Event {@link YiiImageProvider::onAfterRotate}
* @property-read CList $onAfterRotate Event {@link YiiImageProvider::onAfterRotate}
* @property-write string|array|Closure $onBeforeCopy Event {@link YiiImageProvider::onBeforeCopy}
* @property-read CList $onBeforeCopy Event {@link YiiImageProvider::onBeforeCopy}
* @property-write string|array|Closure $onAfterCopy Event {@link YiiImageProvider::onAfterCopy}
* @property-read CList $onAfterCopy Event {@link YiiImageProvider::onAfterCopy}
* @property-write string|array|Closure $onBeforeFill Event {@link YiiImageProvider::onBeforeFill}
* @property-read CList $onBeforeFill Event {@link YiiImageProvider::onBeforeFill}
* @property-write string|array|Closure $onAfterFill Event {@link YiiImageProvider::onAfterFill}
* @property-read CList $onAfterFill Event {@link YiiImageProvider::onAfterFill}
* @property-write string|array|Closure $onBeforeApplyMask Event {@link YiiImageProvider::onBeforeApplyMask}
* @property-read CList $onBeforeApplyMask Event {@link YiiImageProvider::onBeforeApplyMask}
* @property-write string|array|Closure $onAfterApplyMask Event {@link YiiImageProvider::onAfterApplyMask}
* @property-read CList $onAfterApplyMask Event {@link YiiImageProvider::onAfterApplyMask}
* @property-write string|array|Closure $onBeforePaste Event {@link YiiImageProvider::onBeforePaste}
* @property-read CList $onBeforePaste Event {@link YiiImageProvider::onBeforePaste}
* @property-write string|array|Closure $onAfterPaste Event {@link YiiImageProvider::onAfterPaste}
* @property-read CList $onAfterPaste Event {@link YiiImageProvider::onAfterPaste}
* @property-write string|array|Closure $onBeforeFlipVertically Event {@link YiiImageProvider::onBeforeFlipVertically}
* @property-read CList $onBeforeFlipVertically Event {@link YiiImageProvider::onBeforeFlipVertically}
* @property-write string|array|Closure $onBeforeFlipHorizontally Event {@link YiiImageProvider::onBeforeFlipHorizontally}
* @property-read CList $onBeforeFlipHorizontally Event {@link YiiImageProvider::onBeforeFlipHorizontally}
* @property-write string|array|Closure $onAfterFlipVertically Event {@link YiiImageProvider::onAfterFlipVertically}
* @property-read CList $onAfterFlipVertically Event {@link YiiImageProvider::onAfterFlipVertically}
* @property-write string|array|Closure $onAfterFlipHorizontally Event {@link YiiImageProvider::onAfterFlipHorizontally}
* @property-read CList $onAfterFlipHorizontally Event {@link YiiImageProvider::onAfterFlipHorizontally}
* @property-write string|array|Closure $onBeforeShow Event {@link YiiImageProvider::onBeforeShow}
* @property-read CList $onBeforeShow Event {@link YiiImageProvider::onBeforeShow}
* @property-write string|array|Closure $onAfterShow Event {@link YiiImageProvider::onAfterShow}
* @property-read CList $onAfterShow Event {@link YiiImageProvider::onAfterShow}
* @property-write string|array|Closure $onBeforeMask Event {@link YiiImageProvider::onBeforeMask}
* @property-read CList $onBeforeMask Event {@link YiiImageProvider::onBeforeMask}
* @property-write string|array|Closure $onAfterMask Event {@link YiiImageProvider::onAfterMask}
* @property-read CList $onAfterMask Event {@link YiiImageProvider::onAfterMask}
* @property-write string|array|Closure $onAfterHistogram Event {@link YiiImageProvider::onAfterHistogram}
* @property-read CList $onAfterHistogram Event {@link YiiImageProvider::onAfterHistogram}
* @property-write string|array|Closure $onBeforeHistogram Event {@link YiiImageProvider::onBeforeHistogram}
* @property-read CList $onBeforeHistogram Event {@link YiiImageProvider::onBeforeHistogram}
* @property-write string|array|Closure $onBeforeBinary Event {@link YiiImageProvider::onBeforeBinary}
* @property-read CList $onBeforeBinary Event {@link YiiImageProvider::onBeforeBinary}
* @property-write string|array|Closure $onAfterBinary Event {@link YiiImageProvider::onAfterBinary}
* @property-read CList $onAfterBinary Event {@link YiiImageProvider::onAfterBinary}
* @property-write string|array|Closure $onBeforeThumbnail Event {@link YiiImageProvider::onBeforeThumbnail}
* @property-read CList $onBeforeThumbnail Event {@link YiiImageProvider::onBeforeThumbnail}
* @property-write string|array|Closure $onAfterThumbnail Event {@link YiiImageProvider::onAfterThumbnail}
* @property-read CList $onAfterThumbnail Event {@link YiiImageProvider::onAfterThumbnail}
*/
abstract class YiiImageProvider extends CComponent
{
public $drawer = array();
/**
* Returns the image content as a PNG binary string
*
* @param string $format
* @param array $options
*
* @throws RuntimeException
*
* @return string binary
*/
abstract public function __toString();
/**
* Get new instance for drawer.
* Method can use args params.
*
* @return YiiImageDrawer
*/
protected function getDrawerInstance()
{
if (func_num_args() > 0) {
$args = CMap::mergeArray((array) $this->drawer, func_get_args());
$drawer = call_user_func_array(array('Yii', 'createComponent'),
$args);
} else {
$drawer = Yii::createComponent($this->drawer);
}
if (!$drawer instanceof YiiImageDrawer) {
throw new RuntimeException(sprintf(
'Drawer must be instance of YiiImageDrawer, %s given',
var_export($drawer)
));
}
return $drawer;
}
/**
* Returns current image size
*
* @return YiiImageBox
*/
abstract public function getSize();
/**
* Copies current source image into a new YiiImageProvider instance
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doCopy();
/**
* Transforms creates a grayscale mask from current image, returns a new
* image, while keeping the existing image unmodified
*
* @return YiiImageProvider
*/
abstract protected function doMask();
/**
* Crops a specified box out of the source image (modifies the source image)
* Returns cropped self
*
* @param YiiImagePoint $start
* @param YiiImageBox $size
*
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doCrop(YiiImagePoint $start, YiiImageBox $size);
/**
* Resizes current image and returns self
*
* @param YiiImageBox $size
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doResize(YiiImageBox $size);
/**
* Rotates an image at the given angle.
* Optional $background can be used to specify the fill color of the empty
* area of rotated image.
*
* @param integer $angle
* @param YiiImageColor $backgroundColor
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doRotate($angle, YiiImageColor $backgroundColor);
/**
* Pastes an image into a parent image
* Throws exceptions if image exceeds parent image borders or if paste
* operation fails
*
* Returns source image
*
* @param YiiImageProvider $image
* @param YiiImagePoint $start
*
* @throws InvalidArgumentException
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doPaste(YiiImageProvider $image,
YiiImagePoint $start);
/**
* Saves the image at a specified path, the target file extension is used
* to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are
* supported
*
* @param string $path
* @param array $options
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doSave($path, array $options);
/**
* Generates a thumbnail from a current image
* Returns it as a new image, doesn't modify the current image
*
* @param YiiImageBox $size
* @param string $mode
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doThumbnail(YiiImageBox $size, $mode);
/**
* Outputs the image content
*
* @param string $format
* @param array $options
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doShow($format, array $options);
/**
* Flips current image using horizontal axis
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doFlipHorizontally();
/**
* Flips current image using vertical axis
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
abstract protected function doFlipVertically();
/**
* Applies a given mask to current image's alpha channel
*
* @param YiiImageProvider $mask
*
* @return YiiImageProvider
*/
abstract protected function doApplyMask(YiiImageProvider $mask);
/**
* Fills image with provided filling, by replacing each pixel's color in
* the current image with corresponding color from YiiImageFill, and
* returns modified image
*
* @param YiiImageFill $fill
*
* @return YiiImageProvider
*/
abstract protected function doFill(YiiImageFill $fill);
/**
* Returns the image content as a binary string
*
* @param string $format
* @param array $options
*
* @throws RuntimeException
*
* @return string binary
*/
abstract protected function doBinary($format, array $options);
/**
* Returns array of image colors as YiiImageColor instances
*
* @return array
*/
abstract protected function doHistogram();
/**
* Returns color at specified positions of current image
*
* @param YiiImagePoint $point
*
* @throws RuntimeException
*
* @return YiiImageColor
*/
abstract public function getColorAt(YiiImagePoint $point);
/**
* Returns array of image colors as YiiImageColor instances
*
* @return array
*/
final public function histogram()
{
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterHistogram)) {
$event = new YiiImageProviderEventOnBeforeHistogram($this, $this);
$this->onBeforeHistogram($event);
$colors = $event->colors;
}
$colors = $this->doHistogram();
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterHistogram)) {
$event = new YiiImageProviderEventOnAfterHistogram($colors, $this, $this);
$this->onAfterHistogram($event);
$colors = $event->colors;
}
return $colors;
}
/**
* Returns the image content as a binary string
*
* @param string $format
* @param array $options
*
* @throws RuntimeException
*
* @return string binary
*/
final public function binary($format, array $options = array())
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeBinary)) {
$event = new YiiImageProviderEventOnBeforeBinary($format, $options, $this, $this);
$this->onBeforeBinary($event);
$format = $event->binaryFormat;
$options = $event->binaryOptions;
}
$binary = $this->doBinary($format, $options);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterBinary)) {
$event = new YiiImageProviderEventOnAfterBinary($binary, $format, $options, $this, $this);
$this->onAfterBinary($event);
$binary = $event->binaryContent;
}
return $binary;
}
/**
* Instantiates and returns a YiiImageDrawer instance for image drawing
*
* @return type
*/
final public function draw()
{
return $this->getDrawerInstance();
}
/**
* Copies current source image into a new YiiImageProvider instance
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function copy()
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeCopy)) {
$this->onBeforeCopy(new YiiImageProviderEventOnBeforeCopy($this, $this));
}
$provider = $this->doCopy();
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterCopy)) {
$this->onAfterCopy(new YiiImageProviderEventOnAfterCopy($provider, $this, $this));
}
return $provider;
}
/**
* Transforms creates a grayscale mask from current image, returns a new
* image, while keeping the existing image unmodified
*
* @return YiiImageProvider
*/
final public function mask()
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeMask)) {
$this->onBeforeMask(new YiiImageProviderEventOnBeforeMask($this, $this));
}
$mask = $this->doMask();
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterMask)) {
$this->onAfterMask(new YiiImageProviderEventOnAfterMask($mask, $this, $this));
}
return $mask;
}
/**
* Crops a specified box out of the source image (modifies the source image)
* Returns cropped self
*
* @param YiiImagePoint $start
* @param YiiImageBox $size
*
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function crop(YiiImagePoint $start, YiiImageBox $size)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeCrop)) {
$this->onBeforeCrop(new YiiImageProviderEventOnCrop($start, $size, $this, $this));
}
$this->doCrop($start, $size);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterCrop)) {
$this->onAfterCrop(new YiiImageProviderEventOnCrop($start, $size, $this, $this));
}
return $this;
}
/**
* Resizes current image and returns self
*
* @param YiiImageBox $size
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function resize(YiiImageBox $size)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeResize)) {
$this->onBeforeResize(new YiiImageProviderEventOnResize($size, $this, $this));
}
$this->doResize($size);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterResize)) {
$this->onAfterResize(new YiiImageProviderEventOnResize($size, $this, $this));
}
return $this;
}
/**
* Rotates an image at the given angle.
* Optional $background can be used to specify the fill color of the empty
* area of rotated image.
*
* @param integer $angle
* @param YiiImageColor $backgroundColor
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function rotate($angle, YiiImageColor $backgroundColor = null)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeRotate)) {
$event = new YiiImageProviderEventOnRotate($angle, $backgroundColor, $this, $this);
$this->onBeforeRotate($event);
$angle = $event->angle;
}
$this->doRotate($angle, $backgroundColor);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterRotate)) {
$this->onAfterRotate(new YiiImageProviderEventOnRotate($angle, $backgroundColor, $this, $this));
}
return $this;
}
/**
* Pastes an image into a parent image
* Throws exceptions if image exceeds parent image borders or if paste
* operation fails
*
* Returns source image
*
* @param YiiImageProvider $image
* @param YiiImagePoint $start
*
* @throws InvalidArgumentException
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function paste(YiiImageProvider $image, YiiImagePoint $start)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforePaste)) {
$this->onBeforePaste(new YiiImageProviderEventOnPaste($image, $start, $this, $this));
}
$this->doPaste($image, $start);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterPaste)) {
$this->onAfterPaste(new YiiImageProviderEventOnPaste($image, $start, $this, $this));
}
return $this;
}
/**
* Saves the image at a specified path, the target file extension is used
* to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are
* supported
*
* @param string $path
* @param array $options
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function save($path, array $options = array())
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeSave)) {
$event = new YiiImageProviderEventOnSave($path, $options, $this, $this);
$this->onBeforeSave($event);
$path = $event->path;
$options = $event->saveOptions;
}
$this->doSave($path, $options);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterSave)) {
$this->onAfterSave(new YiiImageProviderEventOnSave($path, $options, $this, $this));
}
return $this;
}
/**
* Outputs the image content
*
* @param string $format
* @param array $options
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function show($format, array $options = array())
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeShow)) {
$event = new YiiImageProviderEventOnShow($format, $options, $provider, $sender);
$this->onBeforeSave($event);
$format = $event->showFormat;
$options = $event->showOptions;
}
$this->doShow($format, $options);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterShow)) {
$this->onAfterShow(new YiiImageProviderEventOnShow($format, $options, $provider, $sender));
}
return $this;
}
/**
* Flips current image using horizontal axis
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function flipHorizontally()
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeFlipHorizontally)) {
$this->onBeforeFlipHorizontally(new YiiImageProviderEventOnFlipHorizontally($this, $this));
}
$this->doFlipVertically();
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterFlipHorizontally)) {
$this->onAfterFlipHorizontally(new YiiImageProviderEventOnFlipHorizontally($this, $this));
}
return $this;
}
/**
* Flips current image using vertical axis
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function flipVertically()
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeFlipVertically)) {
$this->onBeforeFlipVertically(new YiiImageProviderEventOnFlipVertically($this, $this));
}
$this->doFlipVertically();
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterFlipVertically)) {
$this->onAfterFlipVertically(new YiiImageProviderEventOnFlipVertically($this, $this));
}
return $this;
}
/**
* Generates a thumbnail from a current image
* Returns it as a new image, doesn't modify the current image
*
* @param YiiImageBox $size
* @param string $mode
*
* @throws RuntimeException
*
* @return YiiImageProvider
*/
final public function thumbnail(YiiImageBox $size,
$mode = YiiImageThumbnailModes::Insert)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeThumbnail)) {
$this->onBeforeThumbnail(new YiiImageProviderEventOnBeforeThumbnail($size, $mode, $this, $this));
}
$thumbnail = $this->doThumbnail($size, $mode);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterThumbnail)) {
$this->onAfterThumbnail(new YiiImageProviderEventOnAfterThumbnail($thumbnail, $size, $mode, $this, $this));
}
return $thumbnail;
}
/**
* Applies a given mask to current image's alpha channel
*
* @param YiiImageProvider $mask
*
* @return YiiImageProvider
*/
final public function applyMask(YiiImageProvider $mask)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeApplyMask)) {
$this->onBeforeApplyMask(new YiiImageProviderEventOnApplyMask($mask, $this, $this));
}
$this->doApplyMask($mask);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterApplyMask)) {
$this->onAfterApplyMask(new YiiImageProviderEventOnApplyMask($mask, $this, $this));
}
return $this;
}
/**
* Fills image with provided filling, by replacing each pixel's color in
* the current image with corresponding color from YiiImageFill, and
* returns modified image
*
* @param YiiImageFill $fill
*
* @return YiiImageProvider
*/
final public function fill(YiiImageFill $fill)
{
if ($this->hasEventHandler(YiiImageProviderEvents::onBeforeFill)) {
$this->onBeforeFill(new YiiImageProviderEventOnFill($fill, $this, $this));
}
$this->doFill($fill);
if ($this->hasEventHandler(YiiImageProviderEvents::onAfterFill)) {
$this->onAfterFill(new YiiImageProviderEventOnFill($fill, $this, $this));
}
return $this;
}
/**
* This event will be raised before crop
*
* @param YiiImageProviderEventOnCrop $event
*/
final public function onBeforeCrop(YiiImageProviderEventOnCrop $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeCrop, $event);
}
/**
* This event will be raised after crop
*
* @param YiiImageProviderEventOnCrop $event
*/
final public function onAfterCrop(YiiImageProviderEventOnCrop $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterCrop, $event);
}
/**
* This event will be raised before fill
*
* @param YiiImageProviderEventOnFill $event
*/
final public function onBeforeFill(YiiImageProviderEventOnFill $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeFill, $event);
}
/**
* This event will be raised after fill
*
* @param YiiImageProviderEventOnFill $event
*/
final public function onAfterFill(YiiImageProviderEventOnFill $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterFill, $event);
}
/**
* This event will be raised before rotate
*
* @param YiiImageProviderEventOnRotate $event
*/
final public function onBeforeRotate(YiiImageProviderEventOnRotate $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeRotate, $event);
}
/**
* This event will be raised after rotate
*
* @param YiiImageProviderEventOnRotate $event
*/
final public function onAfterRotate(YiiImageProviderEventOnRotate $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterRotate, $event);
}
/**
* This event will be raised before apply mask
*
* @param YiiImageProviderEventOnApplyMask $event
*/
final public function onBeforeApplyMask(YiiImageProviderEventOnApplyMask $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeApplyMask, $event);
}
/**
* This event will be raised after apply mask
*
* @param YiiImageProviderEventOnApplyMask $event
*/
final public function onAfterApplyMask(YiiImageProviderEventOnApplyMask $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterApplyMask, $event);
}
/**
* This event will be raised before flip vertically
*
* @param YiiImageProviderEventOnFlipVertically $event
*/
final public function onBeforeFlipVertically(YiiImageProviderEventOnFlipVertically $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeFlipVertically, $event);
}
/**
* This event will be raised after flip vertically
*
* @param YiiImageProviderEventOnFlipVertically $event
*/
final public function onAfterFlipVertically(YiiImageProviderEventOnFlipVertically $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterFlipVertically, $event);
}
/**
* This event will be raised before flip horizontally
*
* @param YiiImageProviderEventOnFlipHorizontally $event
*/
final public function onBeforeFlipHorizontally(YiiImageProviderEventOnFlipHorizontally $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeFlipVertically, $event);
}
/**
* This event will be raised after flip horizontally
*
* @param YiiImageProviderEventOnFlipHorizontally $event
*/
final public function onAfterFlipHorizontally(YiiImageProviderEventOnFlipHorizontally $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterFlipHorizontally,
$event);
}
/**
* This event will be raised before save
*
* @param YiiImageProviderEventOnSave $event
*/
final public function onBeforeSave(YiiImageProviderEventOnSave $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeSave, $event);
}
/**
* This event will be raised after save
*
* @param YiiImageProviderEventOnSave $event
*/
final public function onAfterSave(YiiImageProviderEventOnSave $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterSave, $event);
}
/**
* This event will be raised before paste
*
* @param YiiImageProviderEventOnPaste $event
*/
final public function onBeforePaste(YiiImageProviderEventOnPaste $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforePaste, $event);
}
/**
* This event will be raised after paste
*
* @param YiiImageProviderEventOnPaste $event
*/
final public function onAfterPaste(YiiImageProviderEventOnPaste $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterPaste, $event);
}
/**
* This event will be raised before show
*
* @param YiiImageProviderEventOnShow $event
*/
final public function onBeforeShow(YiiImageProviderEventOnShow $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeShow, $event);
}
/**
* This event will be raised after show
*
* @param YiiImageProviderEventOnShow $event
*/
final public function onAfterShow(YiiImageProviderEventOnShow $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterShow, $event);
}
/**
* This event will be raised before copy
*
* @param YiiImageProviderEventOnBeforeCopy $event
*/
final public function onBeforeCopy(YiiImageProviderEventOnBeforeCopy $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeCopy, $event);
}
/**
* This event will be raised after copy
*
* @param YiiImageProviderEventOnAfterCopy $event
*/
final public function onAfterCopy(YiiImageProviderEventOnAfterCopy $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterCopy, $event);
}
/**
* This event will be raised before binary
*
* @param YiiImageProviderEventOnBeforeBinary $event
*/
final public function onBeforeBinary(YiiImageProviderEventOnBeforeBinary $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeBinary, $event);
}
/**
* This event will be raised after binary
*
* @param YiiImageProviderEventOnAfterBinary $event
*/
final public function onAfterBinary(YiiImageProviderEventOnAfterBinary $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterBinary, $event);
}
/**
* This event will be raised before resize
*
* @param YiiImageProviderEventOnResize $event
*/
final public function onBeforeResize(YiiImageProviderEventOnResize $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeResize, $event);
}
/**
* This event will be raised after resize
*
* @param YiiImageProviderEventOnResize $event
*/
final public function onAfterResize(YiiImageProviderEventOnResize $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterResize, $event);
}
/**
* This event will be raised before mask
*
* @param YiiImageProviderEventOnBeforeMask $event
*/
final public function onBeforeMask(YiiImageProviderEventOnBeforeMask $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeMask, $event);
}
/**
* This event will be raised after mask
*
* @param YiiImageProviderEventOnAfterMask $event
*/
final public function onAfterMask(YiiImageProviderEventOnAfterMask $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterMask, $event);
}
/**
* This event will be raised after histogram
*
* @param YiiImageProviderEventOnAfterHistogram $event
*/
final public function onAfterHistogram(YiiImageProviderEventOnAfterHistogram $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterHistogram, $event);
}
/**
* This event will be raised before histogram
*
* @param YiiImageProviderEventOnBeforeHistogram $event
*/
final public function onBeforeHistogram(YiiImageProviderEventOnBeforeHistogram $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeHistogram, $event);
}
/**
* This event will be raised before thumbnail
*
* @param YiiImageProviderEventOnBeforeThumbnail $event
*/
final public function onBeforeThumbnail(YiiImageProviderEventOnBeforeThumbnail $event)
{
$this->raiseEvent(YiiImageProviderEvents::onBeforeThumbnail, $event);
}
/**
* This event will be raised after thumbnail
*
* @param YiiImageProviderEventOnAfterThumbnail $event
*/
final public function onAfterThumbnail(YiiImageProviderEventOnAfterThumbnail $event)
{
$this->raiseEvent(YiiImageProviderEvents::onAfterThumbnail, $event);
}
}