picrate 2.0.1-java → 2.1.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/docs/_posts/2020-05-11-getting_started_manjaro.md +4 -4
- data/lib/picrate/version.rb +1 -1
- data/pom.rb +2 -2
- data/pom.xml +2 -2
- data/src/main/java/processing/awt/PGraphicsJava2D.java +22 -23
- data/src/main/java/processing/awt/PImageAWT.java +377 -0
- data/src/main/java/processing/awt/ShimAWT.java +545 -0
- data/src/main/java/processing/core/PApplet.java +2231 -2757
- data/src/main/java/processing/core/PGraphics.java +138 -124
- data/src/main/java/processing/core/PImage.java +1517 -1702
- data/src/main/java/processing/core/PSurface.java +105 -139
- data/src/main/java/processing/core/PSurfaceNone.java +29 -0
- data/src/main/java/processing/opengl/PGL.java +649 -3699
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +2507 -2282
- data/src/main/java/processing/opengl/PJOGL.java +374 -1526
- data/src/main/java/processing/opengl/PSurfaceJOGL.java +220 -86
- data/vendors/Rakefile +7 -4
- data/vendors/{picrate_sketches.geany → geany.rb} +32 -7
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 815b6e840309b917ad6161954369b0e9bb959ea37395f55305686aeaafda8cc0
|
4
|
+
data.tar.gz: c8f489adb6e0819610d265498baf205b458badf6306fcfa9d0c75813fb539218
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b32a35a68e3fd8c35a59f45207fc13e0548e0efd8578d4ca74c4e2910308bf7f5ea1e9ba3573b56ada55508090e2b8592f13720ce2992f31537425e22df2a6b
|
7
|
+
data.tar.gz: 016cb1f2b2afc5b32d35620eaa6854f3d3e2bf28befd7de20267db10442a534676482836ba6aa7822132755a1f6adc285dee9352d5aa640d9819232bbc3157e4
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
v2.1.0 Refactor how we configure geany so we can use ENV['HOME'] rather hard code config file. Bump to JRuby-9.2.12.0, include Sam Pottingers July 2020 staging changes.
|
2
|
+
|
1
3
|
v2.0.1 Use JOGL-2.4.0-rc fixes reflection warnings, remove geomerative and wordcram gem dependencies since can now be in step with JRubyArt and propane (re jdk compatibility), bump version for release. Removed Gottfreid Haider shaders, warn legacy driver doesn't work with P2D and P3D sketches. Support aarch64 architecture on RaspberriPI4.
|
2
4
|
|
3
5
|
v2.0.0 Use JDK11+ update to processing-3.5.4 suggest jruby-9.2.11.0
|
@@ -5,12 +5,12 @@ date: 2020-05-11 07:34:13
|
|
5
5
|
categories: PiCrate update
|
6
6
|
permalink: /getting_manjaro/
|
7
7
|
---
|
8
|
-
Currently Manjaro does not come with a pre-installed java. So the first step is to install a `jdk` we currently recommend installing hotspot adopt-openjdk11 from the AdoptOpenJDK project. Setting the JDK_HOME environment and then manually install the latest JRuby. It is probably worth creating a symbolic links to `/usr/bin/jruby` and `/usr/bin/jgem` from wherever you installed jruby eg /opt folder.
|
9
|
-
```
|
8
|
+
Currently Manjaro does not come with a pre-installed java. So the first step is to install a `jdk` we currently recommend installing hotspot adopt-openjdk11 from the AdoptOpenJDK project (there may be issues with distro version). Setting the JDK_HOME environment (easiest done `/etc/profile.d`) and then manually install the latest JRuby. It is probably worth creating a symbolic links to `/usr/bin/jruby` and `/usr/bin/jgem` from wherever you installed jruby eg /opt folder.
|
10
9
|
|
11
10
|
```bash
|
12
11
|
mkdir -p ~/.gem/jruby/2.5.0
|
13
12
|
```
|
13
|
+
|
14
14
|
Now set your `GEM_HOME`, `GEM_PATH` and amend your `PATH` as follows:-
|
15
15
|
|
16
16
|
```bash
|
@@ -27,7 +27,7 @@ jgem install rake
|
|
27
27
|
To install latest picrate and its dependencies:-
|
28
28
|
|
29
29
|
```bash
|
30
|
-
jgem install picrate
|
30
|
+
jgem install picrate
|
31
31
|
```
|
32
32
|
__For a first install:-__
|
33
33
|
|
@@ -37,7 +37,7 @@ picrate --install # no args, install samples and geany config
|
|
37
37
|
picrate -i Samples # to omit geany config
|
38
38
|
```
|
39
39
|
|
40
|
-
This installs example sketches in `~/projects/examples` and ties them into a `geany` project `examples.geany`. It should also be possible to run sketches from the `geany` ide.
|
40
|
+
This installs example sketches in `~/projects/examples` and ties them into a `geany` project `examples.geany`. It should also be possible to run sketches from the `geany` ide. Sketches need to be run in VTE terminal on Manjaro ARM the terminal emulator, does not give access to local environment variables in the version of Geany supplied.
|
41
41
|
|
42
42
|
To create a template sketch from the command line:-
|
43
43
|
|
data/lib/picrate/version.rb
CHANGED
data/pom.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
project 'picrate', 'http://maven.apache.org' do
|
4
4
|
model_version '4.0.0'
|
5
|
-
id 'ruby-processing:picrate:2.0
|
5
|
+
id 'ruby-processing:picrate:2.1.0'
|
6
6
|
packaging 'jar'
|
7
7
|
|
8
8
|
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
|
@@ -31,7 +31,7 @@ project 'picrate', 'http://maven.apache.org' do
|
|
31
31
|
'project.build.sourceEncoding' => 'utf-8',
|
32
32
|
'polyglot.dump.pom' => 'pom.xml')
|
33
33
|
|
34
|
-
pom 'org.jruby:jruby:9.2.
|
34
|
+
pom 'org.jruby:jruby:9.2.12.0'
|
35
35
|
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
|
36
36
|
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
|
37
37
|
jar 'org.processing:video:3.0.2'
|
data/pom.xml
CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
12
12
|
<groupId>ruby-processing</groupId>
|
13
13
|
<artifactId>picrate</artifactId>
|
14
|
-
<version>2.0
|
14
|
+
<version>2.1.0</version>
|
15
15
|
<name>picrate</name>
|
16
16
|
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
|
17
17
|
<url>http://maven.apache.org</url>
|
@@ -76,7 +76,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
76
76
|
<dependency>
|
77
77
|
<groupId>org.jruby</groupId>
|
78
78
|
<artifactId>jruby</artifactId>
|
79
|
-
<version>9.2.
|
79
|
+
<version>9.2.12.0</version>
|
80
80
|
<type>pom</type>
|
81
81
|
</dependency>
|
82
82
|
<dependency>
|
@@ -29,7 +29,6 @@ import java.awt.font.TextAttribute;
|
|
29
29
|
import java.awt.geom.*;
|
30
30
|
import java.awt.image.*;
|
31
31
|
import java.util.Arrays;
|
32
|
-
import java.util.HashMap;
|
33
32
|
import java.util.Map;
|
34
33
|
|
35
34
|
import processing.core.*;
|
@@ -295,10 +294,10 @@ public class PGraphicsJava2D extends PGraphics {
|
|
295
294
|
* is going to return the {@link Graphics2D} object.
|
296
295
|
* @return
|
297
296
|
*/
|
298
|
-
@Override
|
299
|
-
public Image getImage() {
|
300
|
-
return image;
|
301
|
-
}
|
297
|
+
// @Override
|
298
|
+
// public Image getImage() {
|
299
|
+
// return image;
|
300
|
+
// }
|
302
301
|
|
303
302
|
|
304
303
|
/** Returns the java.awt.Graphics2D object used by this renderer.
|
@@ -346,30 +345,30 @@ public class PGraphicsJava2D extends PGraphics {
|
|
346
345
|
// image = new BufferedImage(width * pixelFactor, height * pixelFactor
|
347
346
|
// format == RGB ? BufferedImage.TYPE_INT_ARGB);
|
348
347
|
|
349
|
-
GraphicsConfiguration gc = null;
|
350
|
-
if (surface != null) {
|
351
|
-
Component comp = null; //surface.getComponent();
|
352
|
-
if (comp == null) {
|
353
|
-
|
354
|
-
comp = parent.frame;
|
355
|
-
}
|
356
|
-
if (comp != null) {
|
357
|
-
gc = comp.getGraphicsConfiguration();
|
358
|
-
}
|
359
|
-
}
|
360
|
-
// If not realized (off-screen, i.e the Color Selector Tool), gc will be null.
|
361
|
-
if (gc == null) {
|
362
|
-
//System.err.println("GraphicsConfiguration null in initImage()");
|
363
|
-
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
|
364
|
-
gc = ge.getDefaultScreenDevice().getDefaultConfiguration();
|
365
|
-
}
|
348
|
+
// GraphicsConfiguration gc = null;
|
349
|
+
// if (surface != null) {
|
350
|
+
// Component comp = null; //surface.getComponent();
|
351
|
+
// if (comp == null) {
|
352
|
+
//// System.out.println("component null, but parent.frame is " + parent.frame);
|
353
|
+
// comp = parent.frame;
|
354
|
+
// }
|
355
|
+
// if (comp != null) {
|
356
|
+
// gc = comp.getGraphicsConfiguration();
|
357
|
+
// }
|
358
|
+
// }
|
359
|
+
// // If not realized (off-screen, i.e the Color Selector Tool), gc will be null.
|
360
|
+
// if (gc == null) {
|
361
|
+
// //System.err.println("GraphicsConfiguration null in initImage()");
|
362
|
+
// GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
|
363
|
+
// gc = ge.getDefaultScreenDevice().getDefaultConfiguration();
|
364
|
+
// }
|
366
365
|
|
367
366
|
// Formerly this was broken into separate versions based on offscreen or
|
368
367
|
// not, but we may as well create a compatible image; it won't hurt, right?
|
369
368
|
int wide = width * pixelDensity;
|
370
369
|
int high = height * pixelDensity;
|
371
370
|
// System.out.println("re-creating image");
|
372
|
-
image =
|
371
|
+
image = new BufferedImage(wide, high, BufferedImage.TYPE_INT_ARGB);
|
373
372
|
// image = gc.createCompatibleVolatileImage(wide, high);
|
374
373
|
//image = surface.getComponent().createImage(width, height);
|
375
374
|
}
|
@@ -0,0 +1,377 @@
|
|
1
|
+
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
|
+
|
3
|
+
/*
|
4
|
+
Part of the Processing project - http://processing.org
|
5
|
+
|
6
|
+
Copyright (c) 2015 The Processing Foundation
|
7
|
+
|
8
|
+
This library is free software; you can redistribute it and/or
|
9
|
+
modify it under the terms of the GNU Lesser General Public
|
10
|
+
License version 2.1 as published by the Free Software Foundation.
|
11
|
+
|
12
|
+
This library is distributed in the hope that it will be useful,
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
Lesser General Public License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Lesser General
|
18
|
+
Public License along with this library; if not, write to the
|
19
|
+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
20
|
+
Boston, MA 02111-1307 USA
|
21
|
+
*/
|
22
|
+
|
23
|
+
package processing.awt;
|
24
|
+
|
25
|
+
import java.awt.Graphics2D;
|
26
|
+
import java.awt.Image;
|
27
|
+
import java.awt.RenderingHints;
|
28
|
+
import java.awt.Transparency;
|
29
|
+
import java.awt.image.BufferedImage;
|
30
|
+
import java.awt.image.DataBuffer;
|
31
|
+
import java.awt.image.DataBufferInt;
|
32
|
+
import java.awt.image.PixelGrabber;
|
33
|
+
import java.awt.image.WritableRaster;
|
34
|
+
import java.io.BufferedOutputStream;
|
35
|
+
import java.io.File;
|
36
|
+
import java.io.IOException;
|
37
|
+
import java.util.Iterator;
|
38
|
+
|
39
|
+
import javax.imageio.IIOImage;
|
40
|
+
import javax.imageio.ImageIO;
|
41
|
+
import javax.imageio.ImageTypeSpecifier;
|
42
|
+
import javax.imageio.ImageWriteParam;
|
43
|
+
import javax.imageio.ImageWriter;
|
44
|
+
import javax.imageio.metadata.IIOInvalidTreeException;
|
45
|
+
import javax.imageio.metadata.IIOMetadata;
|
46
|
+
import javax.imageio.metadata.IIOMetadataNode;
|
47
|
+
|
48
|
+
import processing.core.PApplet;
|
49
|
+
import processing.core.PImage;
|
50
|
+
|
51
|
+
|
52
|
+
public class PImageAWT extends PImage {
|
53
|
+
|
54
|
+
/**
|
55
|
+
* Construct a new PImage from a java.awt.Image. This constructor assumes
|
56
|
+
* that you've done the work of making sure a MediaTracker has been used
|
57
|
+
* to fully download the data and that the img is valid.
|
58
|
+
*
|
59
|
+
* @nowebref
|
60
|
+
* @param img assumes a MediaTracker has been used to fully download
|
61
|
+
* the data and the img is valid
|
62
|
+
*/
|
63
|
+
public PImageAWT(Image img) {
|
64
|
+
format = RGB;
|
65
|
+
if (img instanceof BufferedImage) {
|
66
|
+
BufferedImage bi = (BufferedImage) img;
|
67
|
+
width = bi.getWidth();
|
68
|
+
height = bi.getHeight();
|
69
|
+
int type = bi.getType();
|
70
|
+
if (type == BufferedImage.TYPE_3BYTE_BGR ||
|
71
|
+
type == BufferedImage.TYPE_4BYTE_ABGR) {
|
72
|
+
pixels = new int[width * height];
|
73
|
+
bi.getRGB(0, 0, width, height, pixels, 0, width);
|
74
|
+
if (type == BufferedImage.TYPE_4BYTE_ABGR) {
|
75
|
+
format = ARGB;
|
76
|
+
} else {
|
77
|
+
opaque();
|
78
|
+
}
|
79
|
+
} else {
|
80
|
+
DataBuffer db = bi.getRaster().getDataBuffer();
|
81
|
+
if (db instanceof DataBufferInt) {
|
82
|
+
pixels = ((DataBufferInt) db).getData();
|
83
|
+
if (type == BufferedImage.TYPE_INT_ARGB) {
|
84
|
+
format = ARGB;
|
85
|
+
} else if (type == BufferedImage.TYPE_INT_RGB) {
|
86
|
+
opaque();
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
// Implements fall-through if not DataBufferInt above, or not a
|
92
|
+
// known type, or not DataBufferInt for the data itself.
|
93
|
+
if (pixels == null) { // go the old school Java 1.0 route
|
94
|
+
width = img.getWidth(null);
|
95
|
+
height = img.getHeight(null);
|
96
|
+
pixels = new int[width * height];
|
97
|
+
PixelGrabber pg =
|
98
|
+
new PixelGrabber(img, 0, 0, width, height, pixels, 0, width);
|
99
|
+
try {
|
100
|
+
pg.grabPixels();
|
101
|
+
} catch (InterruptedException e) { }
|
102
|
+
}
|
103
|
+
pixelDensity = 1;
|
104
|
+
pixelWidth = width;
|
105
|
+
pixelHeight = height;
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
/**
|
110
|
+
* Use the getNative() method instead, which allows library interfaces to be
|
111
|
+
* written in a cross-platform fashion for desktop, Android, and others.
|
112
|
+
* This is still included for PGraphics objects, which may need the image.
|
113
|
+
*/
|
114
|
+
public Image getImage() { // ignore
|
115
|
+
return (Image) getNative();
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Returns a native BufferedImage from this PImage.
|
121
|
+
*/
|
122
|
+
@Override
|
123
|
+
public Object getNative() { // ignore
|
124
|
+
loadPixels();
|
125
|
+
int type = (format == RGB) ?
|
126
|
+
BufferedImage.TYPE_INT_RGB : BufferedImage.TYPE_INT_ARGB;
|
127
|
+
BufferedImage image = new BufferedImage(pixelWidth, pixelHeight, type);
|
128
|
+
WritableRaster wr = image.getRaster();
|
129
|
+
wr.setDataElements(0, 0, pixelWidth, pixelHeight, pixels);
|
130
|
+
return image;
|
131
|
+
}
|
132
|
+
|
133
|
+
|
134
|
+
@Override
|
135
|
+
public void resize(int w, int h) { // ignore
|
136
|
+
if (w <= 0 && h <= 0) {
|
137
|
+
throw new IllegalArgumentException("width or height must be > 0 for resize");
|
138
|
+
}
|
139
|
+
|
140
|
+
if (w == 0) { // Use height to determine relative size
|
141
|
+
float diff = (float) h / (float) height;
|
142
|
+
w = (int) (width * diff);
|
143
|
+
} else if (h == 0) { // Use the width to determine relative size
|
144
|
+
float diff = (float) w / (float) width;
|
145
|
+
h = (int) (height * diff);
|
146
|
+
}
|
147
|
+
|
148
|
+
BufferedImage img =
|
149
|
+
shrinkImage((BufferedImage) getNative(), w*pixelDensity, h*pixelDensity);
|
150
|
+
|
151
|
+
PImage temp = new PImageAWT(img);
|
152
|
+
this.pixelWidth = temp.width;
|
153
|
+
this.pixelHeight = temp.height;
|
154
|
+
|
155
|
+
// Get the resized pixel array
|
156
|
+
this.pixels = temp.pixels;
|
157
|
+
|
158
|
+
this.width = pixelWidth / pixelDensity;
|
159
|
+
this.height = pixelHeight / pixelDensity;
|
160
|
+
|
161
|
+
// Mark the pixels array as altered
|
162
|
+
updatePixels();
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
// Adapted from getFasterScaledInstance() method from page 111 of
|
167
|
+
// "Filthy Rich Clients" by Chet Haase and Romain Guy
|
168
|
+
// Additional modifications and simplifications have been added,
|
169
|
+
// plus a fix to deal with an infinite loop if images are expanded.
|
170
|
+
// http://code.google.com/p/processing/issues/detail?id=1463
|
171
|
+
static private BufferedImage shrinkImage(BufferedImage img,
|
172
|
+
int targetWidth, int targetHeight) {
|
173
|
+
int type = (img.getTransparency() == Transparency.OPAQUE) ?
|
174
|
+
BufferedImage.TYPE_INT_RGB : BufferedImage.TYPE_INT_ARGB;
|
175
|
+
BufferedImage outgoing = img;
|
176
|
+
BufferedImage scratchImage = null;
|
177
|
+
Graphics2D g2 = null;
|
178
|
+
int prevW = outgoing.getWidth();
|
179
|
+
int prevH = outgoing.getHeight();
|
180
|
+
boolean isTranslucent = img.getTransparency() != Transparency.OPAQUE;
|
181
|
+
|
182
|
+
// Use multi-step technique: start with original size, then scale down in
|
183
|
+
// multiple passes with drawImage() until the target size is reached
|
184
|
+
int w = img.getWidth();
|
185
|
+
int h = img.getHeight();
|
186
|
+
|
187
|
+
do {
|
188
|
+
if (w > targetWidth) {
|
189
|
+
w /= 2;
|
190
|
+
// if this is the last step, do the exact size
|
191
|
+
if (w < targetWidth) {
|
192
|
+
w = targetWidth;
|
193
|
+
}
|
194
|
+
} else if (targetWidth >= w) {
|
195
|
+
w = targetWidth;
|
196
|
+
}
|
197
|
+
if (h > targetHeight) {
|
198
|
+
h /= 2;
|
199
|
+
if (h < targetHeight) {
|
200
|
+
h = targetHeight;
|
201
|
+
}
|
202
|
+
} else if (targetHeight >= h) {
|
203
|
+
h = targetHeight;
|
204
|
+
}
|
205
|
+
if (scratchImage == null || isTranslucent) {
|
206
|
+
// Use a single scratch buffer for all iterations and then copy
|
207
|
+
// to the final, correctly-sized image before returning
|
208
|
+
scratchImage = new BufferedImage(w, h, type);
|
209
|
+
g2 = scratchImage.createGraphics();
|
210
|
+
}
|
211
|
+
g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
|
212
|
+
RenderingHints.VALUE_INTERPOLATION_BILINEAR);
|
213
|
+
g2.drawImage(outgoing, 0, 0, w, h, 0, 0, prevW, prevH, null);
|
214
|
+
prevW = w;
|
215
|
+
prevH = h;
|
216
|
+
outgoing = scratchImage;
|
217
|
+
} while (w != targetWidth || h != targetHeight);
|
218
|
+
g2.dispose();
|
219
|
+
|
220
|
+
|
221
|
+
// If we used a scratch buffer that is larger than our target size,
|
222
|
+
// create an image of the right size and copy the results into it
|
223
|
+
if (targetWidth != outgoing.getWidth() ||
|
224
|
+
targetHeight != outgoing.getHeight()) {
|
225
|
+
scratchImage = new BufferedImage(targetWidth, targetHeight, type);
|
226
|
+
g2 = scratchImage.createGraphics();
|
227
|
+
g2.drawImage(outgoing, 0, 0, null);
|
228
|
+
g2.dispose();
|
229
|
+
outgoing = scratchImage;
|
230
|
+
}
|
231
|
+
return outgoing;
|
232
|
+
}
|
233
|
+
|
234
|
+
|
235
|
+
@Override
|
236
|
+
protected boolean saveImpl(String filename) {
|
237
|
+
if (saveImageFormats == null) {
|
238
|
+
saveImageFormats = javax.imageio.ImageIO.getWriterFormatNames();
|
239
|
+
}
|
240
|
+
try {
|
241
|
+
if (saveImageFormats != null) {
|
242
|
+
for (String saveImageFormat : saveImageFormats) {
|
243
|
+
if (filename.endsWith("." + saveImageFormat)) {
|
244
|
+
if (!saveImageIO(filename)) {
|
245
|
+
System.err.println("Error while saving image.");
|
246
|
+
return false;
|
247
|
+
}
|
248
|
+
return true;
|
249
|
+
}
|
250
|
+
}
|
251
|
+
}
|
252
|
+
} catch (IOException e) {
|
253
|
+
}
|
254
|
+
return false;
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
protected String[] saveImageFormats;
|
259
|
+
|
260
|
+
|
261
|
+
/**
|
262
|
+
* Use ImageIO functions from Java 1.4 and later to handle image save.
|
263
|
+
* Various formats are supported, typically jpeg, png, bmp, and wbmp.
|
264
|
+
* To get a list of the supported formats for writing, use: <BR>
|
265
|
+
* <TT>println(javax.imageio.ImageIO.getReaderFormatNames())</TT>
|
266
|
+
*
|
267
|
+
* @path The path to which the file should be written.
|
268
|
+
*/
|
269
|
+
protected boolean saveImageIO(String path) throws IOException {
|
270
|
+
try {
|
271
|
+
int outputFormat = (format == ARGB) ?
|
272
|
+
BufferedImage.TYPE_INT_ARGB : BufferedImage.TYPE_INT_RGB;
|
273
|
+
|
274
|
+
String extension =
|
275
|
+
path.substring(path.lastIndexOf('.') + 1).toLowerCase();
|
276
|
+
|
277
|
+
// JPEG and BMP images that have an alpha channel set get pretty unhappy.
|
278
|
+
// BMP just doesn't write, and JPEG writes it as a CMYK image.
|
279
|
+
// http://code.google.com/p/processing/issues/detail?id=415
|
280
|
+
if (extension.equals("bmp") || extension.equals("jpg") || extension.equals("jpeg")) {
|
281
|
+
outputFormat = BufferedImage.TYPE_INT_RGB;
|
282
|
+
}
|
283
|
+
|
284
|
+
BufferedImage bimage = new BufferedImage(pixelWidth, pixelHeight, outputFormat);
|
285
|
+
bimage.setRGB(0, 0, pixelWidth, pixelHeight, pixels, 0, pixelWidth);
|
286
|
+
|
287
|
+
File file = new File(path);
|
288
|
+
|
289
|
+
ImageWriter writer = null;
|
290
|
+
ImageWriteParam param = null;
|
291
|
+
IIOMetadata metadata = null;
|
292
|
+
|
293
|
+
if (extension.equals("jpg") || extension.equals("jpeg")) {
|
294
|
+
if ((writer = imageioWriter("jpeg")) != null) {
|
295
|
+
// Set JPEG quality to 90% with baseline optimization. Setting this
|
296
|
+
// to 1 was a huge jump (about triple the size), so this seems good.
|
297
|
+
// Oddly, a smaller file size than Photoshop at 90%, but I suppose
|
298
|
+
// it's a completely different algorithm.
|
299
|
+
param = writer.getDefaultWriteParam();
|
300
|
+
param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
|
301
|
+
param.setCompressionQuality(0.9f);
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
if (extension.equals("png")) {
|
306
|
+
if ((writer = imageioWriter("png")) != null) {
|
307
|
+
param = writer.getDefaultWriteParam();
|
308
|
+
if (false) {
|
309
|
+
metadata = imageioDPI(writer, param, 100);
|
310
|
+
}
|
311
|
+
}
|
312
|
+
}
|
313
|
+
|
314
|
+
if (writer != null) {
|
315
|
+
try (BufferedOutputStream output = new BufferedOutputStream(PApplet.createOutput(file))) {
|
316
|
+
writer.setOutput(ImageIO.createImageOutputStream(output));
|
317
|
+
// writer.write(null, new IIOImage(bimage, null, null), param);
|
318
|
+
writer.write(metadata, new IIOImage(bimage, null, metadata), param);
|
319
|
+
writer.dispose();
|
320
|
+
|
321
|
+
output.flush();
|
322
|
+
}
|
323
|
+
return true;
|
324
|
+
}
|
325
|
+
// If iter.hasNext() somehow fails up top, it falls through to here
|
326
|
+
return javax.imageio.ImageIO.write(bimage, extension, file);
|
327
|
+
|
328
|
+
} catch (IOException e) {
|
329
|
+
throw new IOException("image save failed.");
|
330
|
+
}
|
331
|
+
}
|
332
|
+
|
333
|
+
|
334
|
+
private ImageWriter imageioWriter(String extension) {
|
335
|
+
Iterator<ImageWriter> iter = ImageIO.getImageWritersByFormatName(extension);
|
336
|
+
if (iter.hasNext()) {
|
337
|
+
return iter.next();
|
338
|
+
}
|
339
|
+
return null;
|
340
|
+
}
|
341
|
+
|
342
|
+
|
343
|
+
private IIOMetadata imageioDPI(ImageWriter writer, ImageWriteParam param, double dpi) {
|
344
|
+
// http://stackoverflow.com/questions/321736/how-to-set-dpi-information-in-an-image
|
345
|
+
ImageTypeSpecifier typeSpecifier =
|
346
|
+
ImageTypeSpecifier.createFromBufferedImageType(BufferedImage.TYPE_INT_RGB);
|
347
|
+
IIOMetadata metadata =
|
348
|
+
writer.getDefaultImageMetadata(typeSpecifier, param);
|
349
|
+
|
350
|
+
if (!metadata.isReadOnly() && metadata.isStandardMetadataFormatSupported()) {
|
351
|
+
// for PNG, it's dots per millimeter
|
352
|
+
double dotsPerMilli = dpi / 25.4;
|
353
|
+
|
354
|
+
IIOMetadataNode horiz = new IIOMetadataNode("HorizontalPixelSize");
|
355
|
+
horiz.setAttribute("value", Double.toString(dotsPerMilli));
|
356
|
+
|
357
|
+
IIOMetadataNode vert = new IIOMetadataNode("VerticalPixelSize");
|
358
|
+
vert.setAttribute("value", Double.toString(dotsPerMilli));
|
359
|
+
|
360
|
+
IIOMetadataNode dim = new IIOMetadataNode("Dimension");
|
361
|
+
dim.appendChild(horiz);
|
362
|
+
dim.appendChild(vert);
|
363
|
+
|
364
|
+
IIOMetadataNode root = new IIOMetadataNode("javax_imageio_1.0");
|
365
|
+
root.appendChild(dim);
|
366
|
+
|
367
|
+
try {
|
368
|
+
metadata.mergeTree("javax_imageio_1.0", root);
|
369
|
+
return metadata;
|
370
|
+
|
371
|
+
} catch (IIOInvalidTreeException e) {
|
372
|
+
System.err.println("Could not set the DPI of the output image");
|
373
|
+
}
|
374
|
+
}
|
375
|
+
return null;
|
376
|
+
}
|
377
|
+
}
|