Open websitesa-jefferson opened 1 year ago
good afternoon, could you add support for filepreview for webp?
public static function filePreview($path) { $allowedTypes = array( IMAGETYPE_PNG, IMAGETYPE_JPEG, IMAGETYPE_GIF, IMAGETYPE_WEBP, ); $detectedType = exif_imagetype($path); if (in_array($detectedType, $allowedTypes)) { return self::fileUrl($path); } else { return self::fileIcon($path, true); } }
thankful!
Hello, I have added it. Just use "navatech/yii2-roxymce" : "@dev" in your composer.json Thanks for using.
"navatech/yii2-roxymce" : "@dev"
good afternoon, could you add support for filepreview for webp?
public static function filePreview($path) { $allowedTypes = array( IMAGETYPE_PNG, IMAGETYPE_JPEG, IMAGETYPE_GIF, IMAGETYPE_WEBP, ); $detectedType = exif_imagetype($path); if (in_array($detectedType, $allowedTypes)) { return self::fileUrl($path); } else { return self::fileIcon($path, true); } }
thankful!