C:\xampp\htdocs\landing\wp-content\updraft\plugins-old\imagify\classes\Optimization\File.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
<?php
namespace Imagify\Optimization;

use 
Imagify_Requirements;

defined'ABSPATH' ) || die( 'Cheatin’ uh?' );

/**
 * A generic optimization class focussed on the file itself.
 *
 * @since  1.9
 * @author Grégory Viguier
 */
class File {

    
/**
     * Absolute path to the file.
     *
     * @var    string
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $path;

    
/**
     * Tell if the file is an image.
     *
     * @var    bool
     * @since  1.9
     * @access protected
     * @see    $this->is_image()
     * @author Grégory Viguier
     */
    
protected $is_image;

    
/**
     * Store the file mime type + file extension (if the file is supported).
     *
     * @var    array
     * @since  1.9
     * @access protected
     * @see    $this->get_file_type()
     * @author Grégory Viguier
     */
    
protected $file_type;

    
/**
     * Filesystem object.
     *
     * @var    \Imagify_Filesystem
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $filesystem;

    
/**
     * The editor instance used to resize the file.
     *
     * @var    \WP_Image_Editor_Imagick|\WP_Image_Editor_GD|WP_Error.
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $editor;

    
/**
     * Used to cache the plugin’s options.
     *
     * @var    array
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $options = [];

    
/**
     * The constructor.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  string $file_path Absolute path to the file.
     */
    
public function __construct$file_path ) {
        
$this->path       $file_path;
        
$this->filesystem = \Imagify_Filesystem::get_instance();
    }

    
/**
     * Tell if the file is valid.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_valid() {
        return (bool) 
$this->path;
    }

    
/**
     * Tell if the file can be processed.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool|WP_Error
     */
    
public function can_be_processed() {
        if ( ! 
$this->path ) {
            return new \
WP_Error'empty_path'__'File path is empty.''imagify' ) );
        }

        if ( ! empty( 
$this->filesystem->errors->errors ) ) {
            return new \
WP_Error'filesystem_error'__'Filesystem error.''imagify' ), $this->filesystem->errors );
        }

        if ( ! 
$this->filesystem->exists$this->path ) ) {
            return new \
WP_Error(
                
'not_exists',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'The file %s does not seem to exist.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$this->path ) ) . '</code>'
                
)
            );
        }

        if ( ! 
$this->filesystem->is_file$this->path ) ) {
            return new \
WP_Error(
                
'not_a_file',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'This does not seem to be a file: %s.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$this->path ) ) . '</code>'
                
)
            );
        }

        if ( ! 
$this->filesystem->is_writable$this->path ) ) {
            return new \
WP_Error(
                
'not_writable',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'The file %s does not seem to be writable.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$this->path ) ) . '</code>'
                
)
            );
        }

        
$parent_folder $this->filesystem->dir_path$this->path );

        if ( ! 
$this->filesystem->is_writable$parent_folder ) ) {
            return new \
WP_Error(
                
'folder_not_writable',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'The folder %s does not seem to be writable.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$parent_folder ) ) . '</code>'
                
)
            );
        }

        return 
true;
    }


    
/** ----------------------------------------------------------------------------------------- */
    /** EDITION ================================================================================= */
    /** ----------------------------------------------------------------------------------------- */

    /**
     * Resize (and rotate) an image if it is bigger than the maximum width provided.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     * @author Remy Perona
     *
     * @param  array $dimensions {
     *     Array of image dimensions.
     *
     *     @type int $width  The image width.
     *     @type int $height The image height.
     * }
     * @param  int   $max_width Maximum width to resize to.
     * @return string|WP_Error  Path the the resized image. A WP_Error object on failure.
     */
    
public function resize$dimensions = [], $max_width ) {
        
$can_be_processed $this->can_be_processed();

        if ( 
is_wp_error$can_be_processed ) ) {
            return 
$can_be_processed;
        }

        if ( ! 
$max_width ) {
            return new \
WP_Error(
                
'no_resizing_threshold',
                
__'No threshold provided for resizing.''imagify' )
            );
        }

        if ( ! 
$this->is_image() ) {
            return new \
WP_Error(
                
'not_an_image',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'The file %s does not seem to be an image, and cannot be resized.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$this->path ) ) . '</code>'
                
)
            );
        }

        
$editor $this->get_editor();

        if ( 
is_wp_error$editor ) ) {
            return 
$editor;
        }

        
// Try to correct the auto-rotation if the info is available.
        
if ( $this->filesystem->can_get_exif() && 'image/jpeg' === $this->get_mime_type() ) {
            
$exif        $this->filesystem->get_image_exif$this->path );
            
$orientation = isset( $exif['Orientation'] ) ? (int) $exif['Orientation'] : 1;

            switch ( 
$orientation ) {
                case 
2:
                    
// Flip horizontally.
                    
$editor->fliptruefalse );
                    break;
                case 
3:
                    
// Rotate 180 degrees or flip horizontally and vertically.
                    // Flipping seems faster/uses less resources.
                    
$editor->fliptruetrue );
                    break;
                case 
4:
                    
// Flip vertically.
                    
$editor->flipfalsetrue );
                    break;
                case 
5:
                    
// Rotate 90 degrees counter-clockwise and flip vertically.
                    
$result $editor->rotate90 );

                    if ( ! 
is_wp_error$result ) ) {
                        
$editor->flipfalsetrue );
                    }
                    break;
                case 
6:
                    
// Rotate 90 degrees clockwise (270 counter-clockwise).
                    
$editor->rotate270 );
                    break;
                case 
7:
                    
// Rotate 90 degrees counter-clockwise and flip horizontally.
                    
$result $editor->rotate90 );

                    if ( ! 
is_wp_error$result ) ) {
                        
$editor->fliptruefalse );
                    }
                    break;
                case 
8:
                    
// Rotate 90 degrees counter-clockwise.
                    
$editor->rotate90 );
                    break;
            }
        }

        if ( ! 
$dimensions ) {
            
$dimensions $this->get_dimensions();
        }

        
// Prevent removal of the exif data when resizing (only works with Imagick).
        
add_filter'image_strip_meta''__return_false'789 );

        
// Resize.
        
$new_sizes wp_constrain_dimensions$dimensions['width'], $dimensions['height'], $max_width );
        
$resized   $editor->resize$new_sizes[0], $new_sizes[1], false );

        
// Remove the filter when we're done to prevent any conflict.
        
remove_filter'image_strip_meta''__return_false'789 );

        if ( 
is_wp_error$resized ) ) {
            return 
$resized;
        }

        
$resized_image_path  $editor->generate_filename'imagifyresized' );
        
$resized_image_saved $editor->save$resized_image_path );

        if ( 
is_wp_error$resized_image_saved ) ) {
            return 
$resized_image_saved;
        }

        return 
$resized_image_path;
    }

    
/**
     * Create a thumbnail.
     * Warning: If the destination file already exists, it will be overwritten.
     *
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     *
     * @param  array $destination {
     *     The thumbnail data.
     *
     *     @type string $path            Path to the destination file.
     *     @type int    $width           The image width.
     *     @type int    $height          The image height.
     *     @type bool   $crop            True to crop, false to resize.
     *     @type bool   $adjust_filename True to adjust the file name like what `$editor->multi_resize()` returns, like WP default behavior (default). False to prevent it, and use the file name from $path instead.
     * }
     * @return bool|array|WP_Error {
     *     A WP_Error object on error. True if the file exists.
     *     An array of thumbnail data if the file has just been created:
     *
     *     @type string $file      File name.
     *     @type int    $width     The image width.
     *     @type int    $height    The image height.
     *     @type string $mime-type The mime type.
     * }
     */
    
public function create_thumbnail$destination ) {
        
$can_be_processed $this->can_be_processed();

        if ( 
is_wp_error$can_be_processed ) ) {
            return 
$can_be_processed;
        }

        if ( ! 
$this->is_image() ) {
            return new \
WP_Error(
                
'not_an_image',
                
sprintf(
                    
/* translators: %s is a file path. */
                    
__'The file %s does not seem to be an image, and cannot be resized.''imagify' ),
                    
'<code>' esc_html$this->filesystem->make_path_relative$this->path ) ) . '</code>'
                
)
            );
        }

        
$editor $this->get_editor();

        if ( 
is_wp_error$editor ) ) {
            return 
$editor;
        }

        
// Create the file.
        
$result $editor->multi_resize( [ $destination ] );

        if ( ! 
$result ) {
            return new \
WP_Error'image_resize_error'__'The thumbnail could not be created.''imagify' ) );
        }

        
$result reset$result );

        
$filename          $result['file'];
        
$source_thumb_path $this->filesystem->dir_path$this->path ) . $filename;

        if ( ! isset( 
$destination['adjust_filename'] ) || $destination['adjust_filename'] ) {
            
// The file name can change from what we expected (1px wider, etc), let's use the resulting data to move the file to the right place.
            
$destination_thumb_path $this->filesystem->dir_path$destination['path'] ) . $filename;
        } else {
            
// Respect what is set in $path.
            
$destination_thumb_path $destination['path'];
            
$result['file']         = $this->filesystem->file_name$destination['path'] );
        }

        if ( 
$source_thumb_path === $destination_thumb_path ) {
            return 
$result;
        }

        
$moved $this->filesystem->move$source_thumb_path$destination_thumb_pathtrue );

        if ( ! 
$moved ) {
            return new \
WP_Error'move_error'__'The file could not be moved to its final destination.''imagify' ) );
        }

        return 
$result;
    }

    
/**
     * Backup a file.
     *
     * @since  1.9
     * @since  1.9.8 Added $backup_source argument.
     * @access public
     * @author Grégory Viguier
     *
     * @param  string $backup_path   The backup path.
     * @param  string $backup_source Path to the file to backup. This is useful in WP 5.3+ when we want to optimize the full size: in that case we need to backup the original file.
     * @return bool|WP_Error         True on success. False if the backup option is disabled. A WP_Error object on failure.
     */
    
public function backup$backup_path null$backup_source null ) {
        
$can_be_processed $this->can_be_processed();

        if ( 
is_wp_error$can_be_processed ) ) {
            return 
$can_be_processed;
        }

        
// Make sure the backups directory has no errors.
        
if ( ! $backup_path ) {
            return new \
WP_Error'wp_upload_error'__'Error while retrieving the backups directory path.''imagify' ) );
        }

        
// Create sub-directories.
        
$created $this->filesystem->make_dir$this->filesystem->dir_path$backup_path ) );

        if ( ! 
$created ) {
            return new \
WP_Error'backup_dir_not_writable'__'The backup directory is not writable.''imagify' ) );
        }

        
$path $backup_source && $this->filesystem->exists$backup_source ) ? $backup_source $this->path;

        
/**
         * Allow to overwrite the backup file if it already exists.
         *
         * @since  1.6.9
         * @author Grégory Viguier
         *
         * @param bool   $overwrite   Whether to overwrite the backup file.
         * @param string $path        The file path.
         * @param string $backup_path The backup path.
         */
        
$overwrite apply_filters'imagify_backup_overwrite_backup'false$path$backup_path );

        
// Copy the file.
        
$this->filesystem->copy$path$backup_path$overwriteFS_CHMOD_FILE );

        
// Make sure the backup copy exists.
        
if ( ! $this->filesystem->exists$backup_path ) ) {
            return new \
WP_Error'backup_doesnt_exist'__'The file could not be saved.''imagify' ), array(
                
'file_path'   => $this->filesystem->make_path_relative$path ),
                
'backup_path' => $this->filesystem->make_path_relative$backup_path ),
            ) );
        }

        return 
true;
    }

    
/**
     * Optimize a file with Imagify.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  array $args         {
     *     Optional. An array of arguments.
     *
     *     @type bool   $backup             False to prevent backup. True to follow the user's setting. A backup can't be forced.
     *     @type string $backup_path        If a backup must be done, this is the path to use. Default is the backup path used for the WP Media Library.
     *     @type int    $optimization_level The optimization level (2=ultra, 1=aggressive, 0=normal).
     *     @type bool   $keep_exif          To keep exif data or not.
     *     @type string $convert            Set to 'webp' to convert the image to webp.
     *     @type string $context            The context.
     *     @type int    $original_size      The file size, sent to the API.
     * }
     * @return \sdtClass|\WP_Error Optimized image data. A \WP_Error object on error.
     */
    
public function optimize$args = [] ) {
        
$args array_merge( [
            
'backup'             => true,
            
'backup_path'        => null,
            
'backup_source'      => null,
            
'optimization_level' => 0,
            
'keep_exif'          => true,
            
'convert'            => '',
            
'context'            => 'wp',
            
'original_size'      => 0,
        ], 
$args );

        
$can_be_processed $this->can_be_processed();

        if ( 
is_wp_error$can_be_processed ) ) {
            return 
$can_be_processed;
        }

        
// Check if external HTTP requests are blocked.
        
if ( Imagify_Requirements::is_imagify_blocked() ) {
            return new \
WP_Error'http_block_external'__'External HTTP requests are blocked.''imagify' ) );
        }

        
/**
         * Fires before a media file optimization.
         *
         * @since  1.9
         * @author Grégory Viguier
         *
         * @param string $path Absolute path to the media file.
         * @param array  $args Arguments passed to the method.
        */
        
do_action'imagify_before_optimize_file'$this->path$args );

        
/**
         * Fires before to optimize the Image with Imagify.
         *
         * @since 1.0
         * @deprecated
         *
         * @param string $path   Absolute path to the image file.
         * @param bool   $backup True if a backup will be make.
        */
        
do_action_deprecated'before_do_imagify', [ $this->path$args['backup'] ], '1.9''imagify_before_optimize_file' );

        if ( 
$args['backup'] ) {
            
$backup_result $this->backup$args['backup_path'], $args['backup_source'] );

            if ( 
is_wp_error$backup_result ) ) {
                
// Stop the process if we can't backup the file.
                
return $backup_result;
            }
        }

        
// Send file for optimization and fetch the response.
        
$data = [
            
'normal'        => === $args['optimization_level'],
            
'aggressive'    => === $args['optimization_level'],
            
'ultra'         => === $args['optimization_level'],
            
'keep_exif'     => $args['keep_exif'],
            
'original_size' => $args['original_size'],
            
'context'       => $args['context'],
        ];

        if ( 
$args['convert'] ) {
            
$data['convert'] = $args['convert'];
        }

        
$response upload_imagify_image( [
            
'image' => $this->path,
            
'data'  => wp_json_encode$data ),
        ] );

        if ( 
is_wp_error$response ) ) {
            return new \
WP_Error'api_error'$response->get_error_message() );
        }

        if ( ! 
function_exists'download_url' ) ) {
            require_once 
ABSPATH 'wp-admin/includes/file.php';
        }

        
$temp_file download_url$response->image );

        if ( 
is_wp_error$temp_file ) ) {
            return new \
WP_Error'temp_file_not_found'$temp_file->get_error_message() );
        }

        if ( 
'webp' === $args['convert'] ) {
            
$destination_path $this->get_path_to_webp();
            
$this->path       $destination_path;
            
$this->file_type  null;
            
$this->editor     null;
        } else {
            
$destination_path $this->path;
        }

        
$moved $this->filesystem->move$temp_file$destination_pathtrue );

        if ( ! 
$moved ) {
            return new \
WP_Error'move_error'__'The file could not be moved to its final destination.''imagify' ) );
        }

        
/**
         * Fires after to optimize the Image with Imagify.
         *
         * @since 1.0
         * @deprecated
         *
         * @param string $path   Absolute path to the image file.
         * @param bool   $backup True if a backup has been made.
        */
        
do_action_deprecated'after_do_imagify', [ $this->path$args['backup'] ], '1.9''imagify_before_optimize_file' );

        
/**
         * Fires after a media file optimization.
         *
         * @since  1.9
         * @author Grégory Viguier
         *
         * @param string $path Absolute path to the media file.
         * @param array  $args Arguments passed to the method.
        */
        
do_action'imagify_after_optimize_file'$this->path$args );

        return 
$response;
    }


    
/** ----------------------------------------------------------------------------------------- */
    /** IMAGE EDITOR (GD/IMAGEMAGICK) =========================================================== */
    /** ----------------------------------------------------------------------------------------- */

    /**
     * Get an image editor instance (WP_Image_Editor_Imagick, WP_Image_Editor_GD).
     *
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     *
     * @return WP_Image_Editor_Imagick|WP_Image_Editor_GD|WP_Error
     */
    
protected function get_editor() {
        if ( isset( 
$this->editor ) ) {
            return 
$this->editor;
        }

        
$this->editor wp_get_image_editor$this->path, [
            
'methods' => $this->get_editor_methods(),
        ] );

        if ( ! 
is_wp_error$this->editor ) ) {
            return 
$this->editor;
        }

        
$this->editor = new \WP_Error(
            
'image_editor',
            
sprintf(
                
/* translators: %1$s is an error message, %2$s is a "More info?" link. */
                
__'No php extensions are available to edit images on the server. ImageMagick or GD is required. The internal error is: %1$s. %2$s''imagify' ),
                
$this->editor->get_error_message(),
                
'<a href="' esc_urlimagify_get_external_url'documentation-imagick-gd' ) ) . '" target="_blank">' __'More info?''imagify' ) . '</a>'
            
)
        );

        return 
$this->editor;
    }

    
/**
     * Get the image editor methods we will use.
     *
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     *
     * @return array
     */
    
protected function get_editor_methods() {
        static 
$methods;

        if ( isset( 
$methods ) ) {
            return 
$methods;
        }

        
$methods = [
            
'resize',
            
'multi_resize',
            
'generate_filename',
            
'save',
        ];

        if ( 
$this->filesystem->can_get_exif() ) {
            
$methods[] = 'rotate';
        }

        return 
$methods;
    }


    
/** ----------------------------------------------------------------------------------------- */
    /** VARIOUS TOOLS =========================================================================== */
    /** ----------------------------------------------------------------------------------------- */

    /**
     * Check if a file exceeds the weight limit (> 5mo).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_exceeded() {
        if ( ! 
$this->is_valid() ) {
            return 
false;
        }

        
$size $this->filesystem->size$this->path );

        return 
$size IMAGIFY_MAX_BYTES;
    }

    
/**
     * Tell if the current file is supported for a given context.
     *
     * @since  1.9
     * @access public
     * @see    imagify_get_mime_types()
     * @author Grégory Viguier
     *
     * @param  array $allowed_mime_types A list of allowed mime types.
     * @return bool
     */
    
public function is_supported$allowed_mime_types ) {
        return 
in_array$this->get_mime_type(), $allowed_mime_typestrue );
    }

    
/**
     * Tell if the file is an image.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_image() {
        if ( isset( 
$this->is_image ) ) {
            return 
$this->is_image;
        }

        
$this->is_image strpos$this->get_mime_type(), 'image/' ) === 0;

        return 
$this->is_image;
    }

    
/**
     * Tell if the file is a pdf.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_pdf() {
        return 
'application/pdf' === $this->get_mime_type();
    }

    
/**
     * Get the file mime type.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return string
     */
    
public function get_mime_type() {
        return 
$this->get_file_type()->type;
    }

    
/**
     * Get the file extension.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return string|null
     */
    
public function get_extension() {
        return 
$this->get_file_type()->ext;
    }

    
/**
     * Get the file path.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return string
     */
    
public function get_path() {
        return 
$this->path;
    }

    
/**
     * Replace the file extension by webp.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return string|bool The file path on success. False if not an image or on failure.
     */
    
public function get_path_to_webp() {
        if ( ! 
$this->is_image() ) {
            return 
false;
        }

        if ( 
$this->is_webp() ) {
            return 
false;
        }

        return 
imagify_path_to_webp$this->path );
    }

    
/**
     * Tell if the file is a webp image.
     * Rejects "path/to/.webp" files.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_webp() {
        return 
preg_match'@(?!^|/|\\\)\.webp$@i'$this->path );
    }

    
/**
     * Get the file mime type + file extension.
     *
     * @since  1.9
     * @access protected
     * @see    wp_check_filetype()
     * @author Grégory Viguier
     *
     * @return object {
     *     @type string $ext  The file extension.
     *     @type string $type The mime type.
     * }
     */
    
protected function get_file_type() {
        if ( isset( 
$this->file_type ) ) {
            return 
$this->file_type;
        }

        
$this->file_type = (object) [
            
'ext'  => '',
            
'type' => '',
        ];

        if ( ! 
$this->is_valid() ) {
            return 
$this->file_type;
        }

        
$this->file_type = (object) wp_check_filetype$this->path );

        return 
$this->file_type;
    }

    
/**
     * If the media is an image, get its width and height.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return array
     */
    
public function get_dimensions() {
        if ( ! 
$this->is_image() ) {
            return [
                
'width'  => 0,
                
'height' => 0,
            ];
        }

        
$values $this->filesystem->get_image_size$this->path );

        return [
            
'width'  => $values['width'],
            
'height' => $values['height'],
        ];
    }

    
/**
     * Get a plugin’s option.
     *
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     *
     * @param  string $option_name The option nme.
     * @return mixed
     */
    
protected function get_option$option_name ) {
        if ( isset( 
$this->options$option_name ] ) ) {
            return 
$this->options$option_name ];
        }

        
$this->options$option_name ] = get_imagify_option$option_name );

        return 
$this->options$option_name ];
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586