Verschiedene Groovy Skripte
ulrich
2018-01-13 9ec1f886cdb2d60600ddabaeb340ddf70f82c9c7
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import java.awt.image.ConvolveOp;
import java.awt.image.Kernel;
import java.awt.MediaTracker;
import java.awt.Container;
import java.awt.Toolkit;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import java.net.FileNameMap;
import java.net.URLConnection;
import javax.imageio.ImageIO;
import java.lang.Integer;
 
/*
    Skript zum Verkleinern von Bildern mit Hilfe 
    der Klasse Bild
*/
 
File inFile = new File(args[1]);
File[] fileList = inFile.listFiles();
if(fileList != null && fileList.length > 0) {
    for(int i = 0; i < fileList.length; i++) {
        System.out.println(fileList[i].getAbsolutePath());
        
        File outDir = new File(args[2]);
        File outFile = new File(outDir, fileList[i].getName());
        System.out.println(outFile.getAbsolutePath());
    //java.awt.Image image = (java.awt.Image) Toolkit.getDefaultToolkit().getImage(fileList[i].getAbsolutePath());
        Image image = ImageIO.read(fileList[i]);
    MediaTracker mediaTracker = new MediaTracker(new Container());
    mediaTracker.addImage(image, 0);
    try {
      mediaTracker.waitForID(0);
      if (!mediaTracker.isErrorAny()) {
        Bild bild = new Bild();
        bild.writeImageFile(image, Integer.parseInt(args[0]), bild.getMimeType(fileList[i]), new File(outDir, fileList[i].getName()).getAbsolutePath());
      }
    } catch (InterruptedException ex) {
      System.out.println("Error: " + ex.getLocalizedMessage());
    }        
        
    }
} else {
    System.out.println("fileList is null or empty");
}
 
 
 
/*
    Klasse Bild
*/
 
public class Bild {
  
  public static final int WINZIG = 0;
  public static final int KLEIN = 1;
  public static final int SEMI = 2;
  public static final int MITTEL = 3;
  public static final int GROSS = 4;
  
  public String[] GRNAME; // = {"-w", "-k", "-s", "-m", "-g"};
  public int[] GR; // = {120, 240, 500, 700, 1200};
    
    public Bild() {
        GRNAME = new String[5]
        GRNAME[0] = "-w";
        GRNAME[1] = "-k";
        GRNAME[2] = "-s";
        GRNAME[3] = "-m";
        GRNAME[4] = "-g";
        
        GR = new int[5];
        GR[0] = 120;
        GR[1] = 240;
        GR[2] = 500;
        GR[3] = 700;
        GR[4] = 1200;
        
    }
  
  public void writeImageStream(Image image, int gr, String mimeType, OutputStream out) throws InterruptedException, IOException {
    ImageIO.write(getReducedImage(image, gr, mimeType), imgType(mimeType), out);
  }
  
  /**
   * 
   * @param image
   * @param gr
   * @param mimeType
   * @param vName Name der verkleinerten Datei
   * @throws InterruptedException
   * @throws IOException 
   */
  public void writeImageFile(BufferedImage image, int gr, String mimeType, String vName) throws InterruptedException, IOException {
    ImageIO.write(getReducedImage(image, gr, mimeType), imgType(mimeType), new File(vName));
  }
  
  private BufferedImage getReducedImage(Image image, int gr, String mimeType) throws InterruptedException, IOException {
    BufferedImage img;
    int q = 90;
    float sh = (float) 0.0;
    if(mimeType.contains("jpeg")) {
      img = getReducedImageImpl(image, gr, gr, q, sh, false);
    } else {
      img = getReducedImageImpl(image, gr, gr, q, sh, true);
    }
    return img;
  }
 
  /**
   * Eine in Groesse und Qualitaet verringerte Bilddatei erzeugen
   * @param image  Ablageort und Name der Bilddatei
   * @param width  neue Breite
   * @param height  neue hoehe
   * @param quality neue Qualitaet (0 - 100)
   * @param factor Faktor fuer Schaerfe / Unschaerfe (z.B. -0.15f fuer leichte Unschaerfe, 0.05f fuer leichtes Nachschaerfen)
   * @param withTransparency ob Transparenz benoetigt wird
   * @return neues, in Groesse und Qualitaet entsprechend verringertes Bild
   * @throws java.lang.InterruptedException
   * @throws java.io.FileNotFoundException
   */
  public BufferedImage getReducedImageImpl(BufferedImage image, int width, int height, int quality, float factor, boolean withTransparency) 
  throws InterruptedException, FileNotFoundException, IOException {
 
    int imageWidth = image.getWidth(null);
        int imageHeight = image.getHeight(null);
 
      int thumbWidth = width;
        int thumbHeight = height;
    if(imageWidth < width) {
      thumbWidth = imageWidth;    
    }
    if(imageHeight < height) {
      thumbHeight = imageHeight;
    }
        double thumbRatio = (double)thumbWidth / (double)thumbHeight;
        double imageRatio = (double)imageWidth / (double)imageHeight;
        if (thumbRatio < imageRatio) {
            thumbHeight = (int)(thumbWidth / imageRatio);
        }
        else {
            thumbWidth = (int)(thumbHeight * imageRatio);
        }
 
        // draw original image to thumbnail image object and
        // scale it to the new size on-the-fly
        //BufferedImage thumbImage = new BufferedImage(thumbWidth, thumbHeight, BufferedImage.TYPE_INT_RGB);
    BufferedImage thumbImage;
    if(withTransparency) {
        thumbImage = new BufferedImage(thumbWidth, thumbHeight, BufferedImage.TYPE_INT_ARGB);
    } else {
      thumbImage = new BufferedImage(thumbWidth, thumbHeight, BufferedImage.TYPE_INT_RGB);
    }
        Graphics2D graphics2D = thumbImage.createGraphics();
        graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
        graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
 
        // 30.7.2007: sharpening hinzugefuegt (Anfang)
        //float factor = -0.15f; // minus = sharpen, plus = soften
        //float[] sharpenArray = {0, -1, 0, -1, 5, -1, 0, -1, 0};
    
    /*
      30.6.2013: sharpening als Weichmacher nur, wenn Bild < 400
    */
    /*if(thumbWidth < 400 || thumbHeight < 400) {
      factor = 0.1f;
    }*/
    
        if(factor != (float) 0.0) {
            //float[] array = {0, factor, 0, factor, 1-(factor*4), factor, 0, factor, 0};
                        float[] array = new float[9];
                        array[0] = 0;
                        array[1] = factor;
                        array[2] = 0;
                        array[3] = factor;
                        array[4] = 1-(factor*4);
                        array[5] = factor;
                        array[6] = 0;
                        array[7] = factor;
                        array[8] = 0;
            Kernel kernel = new Kernel(3, 3, array);
            ConvolveOp cOp = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP, null);
            thumbImage = cOp.filter(thumbImage, null);
        }
        // 30.7.2007: sharpening hinzugefuegt (Ende)
    
    return thumbImage;
  }
  
  public String imgType(String mimeType) {
    String imgType;
    if(mimeType.contains("jpg")) {
      imgType = "jpg";
    } else if(mimeType.contains("jpeg")) {
      imgType = "jpg";
    } else if(mimeType.contains("png")) {
      imgType = "png";
    } else if(mimeType.contains("gif")) {
      imgType = "gif";
    } else {
      imgType = "jpg";
    }
    return imgType;
  }
  
  /**
   * 
   * @param v Bild.WINZIG .. Bild.GROSS
   * @return Länge der längsten Kante in Bildpunkten
   */
  public int getVariantenGroesse(int v) {
    return GR[v];
  }
  
  public String getVariantenName(int v) {
    return GRNAME[v];
  }
  
  public String getMimeType(File file) {
    String absName = file.getAbsolutePath();
    FileNameMap fileNameMap = URLConnection.getFileNameMap();
    return fileNameMap.getContentTypeFor("file://" + absName);    
  }
}