qiqian / webp

Automatically exported from code.google.com/p/webp
0 stars 0 forks source link

convert doesn't support webp encoding #198

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. wget http://r1.ykimg.com/051600005327A60D67379F62450A63E6
2. convert -quality 85 051600005327A60D67379F62450A63E6 
051600005327A60D67379F62450A63E6.webp
3. the new result will give some error the webp like film style? 

What is the expected output? What do you see instead?
The webp give the film style?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by laokanli...@gmail.com on 9 May 2014 at 8:08

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
convert is an tools of imagemagick ( 
http://www.imagemagick.org/script/convert.php )
The support isn't here.

if you use the Google WebP Tools the command are:

cwebp -q 85 051600005327A60D67379F62450A63E6  -o 
051600005327A60D67379F62450A63E6.webp

Original comment by marcomsousa on 9 May 2014 at 8:57

GoogleCodeExporter commented 8 years ago
I didn't check what the current state is, but this sounds like a bug/feature 
request for imagemagick. You should post a request on their forums [1][2].

[1] http://www.imagemagick.org/discourse-server/
[2] 
http://www.imagemagick.org/discourse-server/viewforum.php?f=2&sid=e229cc860fd3f5
6d10fa77abe84cbede

Original comment by jz...@google.com on 23 Jul 2014 at 1:04

GoogleCodeExporter commented 8 years ago
it works with ImageMagick 6.8.0-7  at least (the one i have for test)
Just use, for instance: convert in.jpg out.webp

Original comment by pascal.m...@gmail.com on 23 Jul 2014 at 1:16

GoogleCodeExporter commented 8 years ago
'convert -list format' should give you the list of supported format.
The line with WebP (if supported) looks like:

     WEBP* rw-   WebP Image Format (libwebp 0.3.1)

For the reminder, the WebP encoding options are described here: 
http://www.imagemagick.org/script/webp.php

Original comment by pascal.m...@gmail.com on 19 Aug 2014 at 1:31