Use WebP for compressing images.

This commit is contained in:
akwizgran
2021-05-21 12:38:57 +01:00
parent aabb0bfb4a
commit a5972e26fe
5 changed files with 10 additions and 9 deletions

View File

@@ -6,6 +6,9 @@ import java.io.InputStream;
import javax.annotation.Nullable;
public interface TestAvatarCreator {
String MIME_TYPE = "image/webp";
@Nullable
InputStream getAvatarInputStream() throws IOException;
}