Create ImageCompressor amd ImageCompressorImpl

* Methods from AttachmentCreationTask have been moved into them:
  * compressImage()
  * createBitmap()
* ImageCompressor is availabe via AttachmentModule
This commit is contained in:
Sebastian Kürten
2020-12-01 14:38:35 +01:00
committed by Torsten Grote
parent aa00ba7220
commit f819930570
15 changed files with 242 additions and 139 deletions

View File

@@ -1,10 +1,11 @@
package org.briarproject.briar.api.test;
import java.io.IOException;
import java.io.InputStream;
import javax.annotation.Nullable;
public interface TestAvatarCreator {
@Nullable
InputStream getAvatarInputStream();
InputStream getAvatarInputStream() throws IOException;
}