larger icons for the temporary image handler
[mir.git] / source / mircoders / media / ImageProcessor.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mircoders.media;
33
34 import java.io.*;
35 import java.awt.image.renderable.ParameterBlock;
36 import javax.media.jai.*;
37 import com.sun.media.jai.codec.*;
38
39 import mir.log.*;
40
41 /**
42  *
43  * <p>Title: Image processor</p>
44  * <p>Description: Temporary image processor class. (Made for the immediate needs of CMI brasil.
45  *                 Will become obsolete when mh's media handler rewrite is finished. </p>
46  * @author Zapata
47  * @version 1.0
48  */
49
50 public class ImageProcessor {
51   static final LoggerWrapper logger = new LoggerWrapper("media");
52
53   private PlanarImage image;
54   private PlanarImage scaledImage;
55
56   private byte[] iconData;
57   private byte[] imageData;
58   private int iconWidth;
59   private int iconHeight;
60   private String imageType;
61
62 //  public ImageScaler(
63
64   public ImageProcessor(SeekableStream anImageStream, String anImageType) throws IOException {
65     image = JAI.create("stream", anImageStream);
66     scaledImage = image;
67     imageType = anImageType;
68   }
69
70   public ImageProcessor(File aFile, String anImageType) throws IOException {
71     this(new FileSeekableStream(aFile), anImageType);
72   }
73
74   public ImageProcessor(byte[] anImageData, String anImageType) throws IOException {
75     this(new ByteArraySeekableStream(anImageData), anImageType);
76   }
77
78   public void descaleImage(int aMaxSize) throws java.io.IOException {
79     descaleImage(aMaxSize, 0);
80   }
81
82   public void descaleImage(int aMaxSize, float aMinDescale) throws java.io.IOException {
83     descaleImage(aMaxSize, aMaxSize, aMinDescale);
84   }
85
86   public void descaleImage(int aMaxWidth, int aMaxHeight, float aMinDescale) throws java.io.IOException {
87     float scale;
88     scaledImage = image;
89
90     if ((aMaxWidth>0 && image.getWidth()>aMaxWidth) || (aMaxHeight>0 && image.getHeight()>aMaxHeight))
91     {
92       logger.info("Scaling image");
93
94       scale=1;
95
96       if (aMaxWidth>0 && image.getWidth()>aMaxWidth) {
97         scale = Math.min(scale, (float) aMaxWidth / (float) image.getWidth());
98       }
99       if (aMaxHeight>0 && image.getHeight()>aMaxHeight) {
100         scale = Math.min(scale, (float) aMaxHeight / (float) image.getHeight());
101       }
102
103       if (1-scale>aMinDescale) {
104         scaleImage(scale);
105       }
106     }
107   }
108
109   public void scaleImage(float aScalingFactor) throws java.io.IOException {
110     ParameterBlockJAI params = new ParameterBlockJAI("scale");
111     params.addSource(image);
112
113     params.setParameter("xScale", aScalingFactor);
114     params.setParameter("yScale", aScalingFactor);
115     params.setParameter("xTrans", 0.0F);
116     params.setParameter("yTrans", 0.0F);
117     params.setParameter("interpolation", new InterpolationBilinear());
118     scaledImage = JAI.create("scale", params);
119   }
120
121   public int getWidth() {
122     return image.getWidth();
123   }
124
125   public int getHeight() {
126     return image.getHeight();
127   }
128
129   public int getScaledWidth() {
130     return scaledImage.getWidth();
131   }
132
133   public int getScaledHeight() {
134     return scaledImage.getHeight();
135   }
136
137   public void writeScaledData(OutputStream aStream) {
138     JAI.create("encode", scaledImage, aStream, imageType, null);
139   }
140
141   public byte[] getScaledData() {
142     ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
143     writeScaledData(outputStream);
144     return outputStream.toByteArray();
145   }
146
147   public void writeScaledData(File aFile) throws IOException {
148     writeScaledData(new FileOutputStream(aFile));
149   }
150 }