在工作过程中遇到部分网络图片采用webp格式,但是opencv不支持webp格式,需要寻求解决方案。另外,还需要在windows环境下的python程序中调用,最终发现有两个可行方案:1、调用外部接口,2、使用google提供的libwebp。
1、外部接口 cloudconvert
使用cloudconvert的api接口时需要事先申请api_key。
以下为cloudconvert的示例代码:
import cloudconvert
def get_webp_image(image_url):
api_key="your api key"
convert_api=cloudconvert.Api(api_key) process=convert_api.convert({"input":"download","file":image_url,"inputformat":"webp","outerformat":"jpg"}) ##格式字典
process.wait() ##等待转换
temp="E:/test/%s.jpg" % str(int(time.time()))
process.download(temp) ##将转换的图片下载下来
temp_image=cv2.imread(temp)
return temp_image
2、google的libwebp包
libwebp包是由google自己提供,在网上很容易就可以下载到。
下载之后再将bin目录添加到环境变量,之后就可以在cmd窗口调用cwebp、dwebp等命令。
如果出现仍然无法通过python程序调用命令,调用时提示 “非系统内部、外部命令或批处理文件,无法直接调用“。
我的解决方法是,采用批处理文件作为中转,间接调用 cwebp和dwebp。如在同目录下创建dwebp.bat文件,只需键入:dwebp %1 -o %2
line="D:/libwebp/bin/dwebp E:/test.webp -o E:/testpng.png"
subprocess.call(line,shell=True)