Bilder mit Neon 2 verwenden
ulrich
2024-02-25 f7b9adf186cdda03ef787dd8064066e790710a69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
  neon-image - Image extensions to Neon
  Copyright (C) 2024  Ulrich Hilger
 
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Affero General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version.
 
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Affero General Public License for more details.
 
  You should have received a copy of the GNU Affero General Public License
  along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
package de.uhilger.neon.image;
 
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
 
/**
 * Eine Klasse zur Erzeugung verkleinerter sowie Base64-enkodierter Fassungen 
 * einer Bilddatei innerhalb eines Threads.
 * 
 * @author Ulrich Hilger
 * @version 1, 14.06.2021
 */
public class ImageThread extends Thread {
 
  private List<ThreadListener> listeners;
  private final File dir;
  private final File toFile;
  private final String relName;
  private final String indicator;
  private final int size;
  private final Datei datei;
  private final String ext;
 
  public ImageThread(File dir, String relName, String indicator, int size, File toFile, Datei datei, String ext) {
    super();
    listeners = new ArrayList();
    this.dir = dir;
    this.relName = relName;
    this.indicator = indicator;
    this.size = size;
    this.toFile = toFile;
    this.datei = datei;
    this.ext = ext;
  }
 
  protected void sendFinished() {
    Iterator<ThreadListener> i = listeners.iterator();
    while (i.hasNext()) {
      ThreadListener listener = i.next();
      listener.finished();
    }
  }
 
  protected void clear() {
    sendFinished();
    listeners.clear();
    listeners = null;
  }
 
  /**
   * starten mit 
   * 
   * <pre>
   * Thread p = new ImageThread(..); 
   * p.start();
   * </pre>
   */
  @Override
  public void run() {
    try {
      ImageWorker be = new ImageWorker();
      be.createImage(dir, relName, indicator, size, toFile);
      be.setImgSrc(datei, ext, toFile);
      clear();
    } catch (IOException ex) {
      //Logger.getLogger(ImageThread.class.getName()).log(Level.SEVERE, null, ex);
      clear();
    }
  }
 
  public void addListener(ThreadListener listener) {
    listeners.add(listener);
  }
 
  public void removeListener(ThreadListener listener) {
    listeners.remove(listener);
  }
 
  public interface ThreadListener {
 
    public void finished();
  }
 
}