Posts: 784
Threads: 39
Joined: Aug 2009
Reputation:
29
Looks like it might be possible can you share/upload some examples images.
Posts: 784
Threads: 39
Joined: Aug 2009
Reputation:
29
Hmm I can't see it. Please attach as an attachment and I will do testing.
Posts: 784
Threads: 39
Joined: Aug 2009
Reputation:
29
Still looking into it.
Downside seems only chrome supports it. Firefox doesn't do anything.
Posts: 10
Threads: 1
Joined: Nov 2010
Reputation:
0
accualy since i changed my php vers. to 7.2 webp format is now available to use, but ezgallery converts webp file to bmp file when uploaded. how can i disable converting procces?
Posts: 784
Threads: 39
Joined: Aug 2009
Reputation:
29
In the files look for
$extensions = array(
1 => 'gif',
2 => 'jpeg',
3 => 'png',
5 => 'psd',
6 => 'bmp',
7 => 'tiff',
8 => 'tiff',
9 => 'jpeg',
14 => 'iff',
);
Change to
$extensions = array(
1 => 'gif',
2 => 'jpeg',
3 => 'png',
5 => 'psd',
6 => 'bmp',
7 => 'tiff',
8 => 'tiff',
9 => 'jpeg',
14 => 'iff',
18 => 'webp',
);