Support for decoding webp images
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / FormatsRegistry.java
index b106cba..4421846 100755 (executable)
@@ -1,11 +1,8 @@
 /*
- * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012 -- 2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 3 of the GNU Lesser General Public License
- * or later as published by the Free Software Foundation.
-*/
+ * Meviz - Various tools collection to work with multimedia. Author: Svjatoslav Agejenko.
+ * This project is released under Creative Commons Zero (CC0) license.
+ */
+
 
 package eu.svjatoslav.meviz.encoder;
 
@@ -25,6 +22,8 @@ public class FormatsRegistry {
 
         // image conversion
         registerEncoder(new Convert());
+        registerEncoder(new WebpEncoder());
+        registerEncoder(new WebpDecoder());
 
         // image to text (OCR)
         registerEncoder(new Ocr());