| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/INVOICE/wp-content/plugins/1wp-optimize/webp/ |
Upload File : |
<?php
if (!defined('WPO_VERSION')) die('No direct access allowed');
if (!class_exists('WPO_WebP_Convert')) :
class WPO_WebP_Convert {
public $converters = null;
public function __construct() {
$this->converters = WP_Optimize()->get_options()->get_option('webp_converters');
}
/**
* Converts uploaded image to webp format
*
* @param string $source - path of the source file
* @return bool
*/
public function convert($source) {
if (count($this->converters) < 1) return false;
$destination = $this->get_destination_path($source);
return $this->check_converters_and_do_conversion($source, $destination);
}
/**
* Returns the destination full path
*
* @param string $source - path of the source file
*
* @return string $destination - path of destination file
*/
public function get_destination_path($source) {
$path_parts = pathinfo($source);
return $path_parts['dirname'] . '/'. basename($source) . '.webp';
}
/**
* Loop through available converters and do the conversion
*
* @param string $source - path of source file
* @param string $destination - path of destination file
*
* @return bool
*/
protected function check_converters_and_do_conversion($source, $destination) {
foreach ($this->converters as $converter) {
WPO_WebP_Utils::perform_webp_conversion($converter, $source, $destination);
if (is_file($destination)) return true;
}
return false;
}
}
endif;