#483 Initial PSD Write support

(cherry picked from commit 15a9ad0a9b)
This commit is contained in:
Harald Kuhr
2021-05-06 00:01:54 +02:00
parent 5661e7459c
commit 2930708a54
19 changed files with 957 additions and 132 deletions
@@ -60,7 +60,7 @@ public final class TIFFWriter extends MetadataWriter {
private static final int LONGWORD_LENGTH = 4;
private static final int ENTRY_LENGTH = 12;
public boolean write(final Collection<Entry> entries, final ImageOutputStream stream) throws IOException {
public boolean write(final Collection<? extends Entry> entries, final ImageOutputStream stream) throws IOException {
return write(new IFD(entries), stream);
}