-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRawImageViewer.java
More file actions
454 lines (405 loc) · 17.7 KB
/
RawImageViewer.java
File metadata and controls
454 lines (405 loc) · 17.7 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
// RawImageViewer
// Visualize raw image data
// @category Visualization
// @menupath Tools.Raw Image Viewer
// @author Ramin Sadre
// @runtime Java
import ghidra.app.script.GhidraScript;
import ghidra.program.model.address.Address;
import ghidra.program.model.mem.Memory;
import javax.swing.*;
import javax.swing.event.ChangeEvent;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.util.List;
import java.util.Arrays;
import java.util.Scanner;
public class RawImageViewer extends GhidraScript {
private static final String[] formats = {
"Monochrome (1 bit/pixel)",
"Grayscale (8 bits/pixel)",
"RGB24 (24 bits/pixel)",
"RGBA32 (32 bits/pixel)",
"Bitplanes",
"Interleaved bitplanes",
"Interleaved bitplanes by 16"
};
private static final String paramHeader = "$RAWIMAGE (do not modify or add comment after this line),";
private static JButton createSmallButton(String text) {
JButton button = new JButton(text);
Insets insets = button.getMargin();
button.setMargin(new Insets(insets.top, 8, insets.bottom, 8));
return button;
}
private JLabel imageComp;
private JTextField addressComp;
private JSpinner planesComp;
private Address start;
private int width, height, format, numPlanes, modulo;
private int bytesPerRow;
private int clickedX, clickedY;
private void setDefaultParameters() {
width = 320;
height = 200;
format = 0;
numPlanes = 1;
modulo = 0;
}
// loads the image parameters from the pre-comment.
// returns true if successful
private boolean loadParametersFromComment() {
String comment = getPreComment(start);
if (comment==null) {
return false;
}
String[] commentLines = comment.split("\n");
if (!commentLines[commentLines.length-1].startsWith(paramHeader)) {
return false;
}
String[] params = commentLines[commentLines.length-1].split(",");
try {
int width = Integer.parseInt(params[1]);
int height = Integer.parseInt(params[2]);
int format = Integer.parseInt(params[3]);
int numPlanes = Integer.parseInt(params[4]);
int modulo = Integer.parseInt(params[5]);
if(width<0 || width>10000
|| height<0 || height>10000
|| format<0 || format>=formats.length
|| numPlanes<1 || numPlanes>8
|| modulo<0 || modulo>10000) {
throw new IllegalArgumentException();
}
this.width = width;
this.height = height;
this.format = format;
this.numPlanes = numPlanes;
this.modulo = modulo;
return true;
}
catch (Exception e) {
return false;
}
}
// stores the image parameters in the pre-comment
private void storeParametersInComment() {
String params = paramHeader + width + "," + height + "," + format + "," + numPlanes + "," + modulo;
String comment = getPreComment(start);
if (comment == null) {
comment = params;
}
else {
String[] commentLines = getPreComment(start).split("\n");
if (!commentLines[commentLines.length-1].startsWith(paramHeader)) {
commentLines = Arrays.copyOf(commentLines, commentLines.length + 1);
}
commentLines[commentLines.length-1] = params;
comment = String.join("\n", commentLines);
}
start();
setPreComment(start, comment);
end(true);
}
private void setStartAddress(long displacement) {
start = start.add(displacement);
onImageChange();
}
private int[] makeGrayscalePalette() {
int numColors = 1 << numPlanes;
int[] palette = new int[numColors];
for(int i = 0; i < numColors; i++) {
int val = (i * 255) / numColors;
palette[i] = (val << 16) | (val << 8) | val;
}
return palette;
}
private void onImageChange() {
if(width == 0 || height == 0) {
imageComp.setIcon(null);
return;
}
addressComp.setText("0x"+start.toString());
try {
// Decode image from memory content
Memory mem = currentProgram.getMemory();
BufferedImage img = null;
switch(format) {
case 0 -> {
// 1-bit monochrome (8 pixels per byte, MSB-first)
bytesPerRow = (width + 7) / 8 + modulo;
byte[] data = new byte[bytesPerRow*height];
mem.getBytes(start, data);
img = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteIndex = y * bytesPerRow + x / 8;
int bitIndex = 7 - (x % 8);
int bit = (data[byteIndex] >> bitIndex) & 1;
int color = bit == 1 ? 0xFFFFFF : 0x000000;
img.setRGB(x, y, color);
}
}
}
case 1 -> {
// 8-bit grayscale
bytesPerRow = width + modulo;
byte[] data = new byte[bytesPerRow * height];
mem.getBytes(start, data);
img = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteIndex = y * bytesPerRow + x;
int val = data[byteIndex] & 0xFF;
int rgb = (val << 16) | (val << 8) | val;
img.setRGB(x, y, rgb);
}
}
}
case 2 -> {
// 24-bit RGB
bytesPerRow = width * 3 + modulo;
byte[] data = new byte[bytesPerRow * height];
mem.getBytes(start, data);
img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteIndex = y * bytesPerRow + x * 3;
int r = data[byteIndex] & 0xFF;
int g = data[byteIndex+1] & 0xFF;
int b = data[byteIndex+2] & 0xFF;
int rgb = (r << 16) | (g << 8) | b;
img.setRGB(x, y, rgb);
}
}
}
case 3 -> {
// 32-bit RGBA
bytesPerRow = width * 4 + modulo;
byte[] data = new byte[bytesPerRow * height];
mem.getBytes(start, data);
img = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteIndex = y * bytesPerRow + x * 4;
int r = data[byteIndex] & 0xFF;
int g = data[byteIndex+1] & 0xFF;
int b = data[byteIndex+2] & 0xFF;
int a = data[byteIndex+3] & 0xFF;
int rgba = (a << 24) | (r << 16) | (g << 8) | b;
img.setRGB(x, y, rgba);
}
}
}
case 4 -> {
// Bitplane mode
bytesPerRow = (width + 7) / 8 + modulo;
byte[] data = new byte[bytesPerRow * height * numPlanes];
mem.getBytes(start, data);
int[] palette = makeGrayscalePalette();
img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteOffset = y * bytesPerRow + x / 8;
int bitIndex = 7 - (x % 8);
int colorIndex = 0;
for (int p = 0; p < numPlanes; p++) {
int planeByteIndex = byteOffset + p * bytesPerRow * height;
int bit = (data[planeByteIndex] >> bitIndex) & 1;
colorIndex |= (bit << p);
}
int rgb = palette[colorIndex & 0xF];
img.setRGB(x, y, rgb);
}
}
}
case 5 -> {
// Interleaved bitplane mode
bytesPerRow = (width + 7) / 8 + modulo;
byte[] data = new byte[bytesPerRow * height * numPlanes];
mem.getBytes(start, data);
int[] palette = makeGrayscalePalette();
img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteOffset = y * numPlanes * bytesPerRow + x / 8;
int bitIndex = 7 - (x % 8);
int colorIndex = 0;
for (int p = 0; p < numPlanes; p++) {
int planeByteIndex = byteOffset + p * bytesPerRow;
int bit = (data[planeByteIndex] >> bitIndex) & 1;
colorIndex |= (bit << p);
}
int rgb = palette[colorIndex & 0xF];
img.setRGB(x, y, rgb);
}
}
}
case 6 -> {
// Interleaved bitplane mode where pixels are stored in groups of 16
bytesPerRow = (width + 7) / 8 + modulo;
byte[] data = new byte[bytesPerRow * height * numPlanes];
mem.getBytes(start, data);
int[] palette = makeGrayscalePalette();
img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int byteOffset = y * numPlanes * bytesPerRow + x/16 * 2 * numPlanes + (x % 16) / 8;
int bitIndex = 7 - (x % 8);
int colorIndex = 0;
for (int p = 0; p < numPlanes; p++) {
int planeByteIndex = byteOffset + p * 2;
int bit = (data[planeByteIndex] >> bitIndex) & 1;
colorIndex |= (bit << p);
}
int rgb = palette[colorIndex & 0xF];
img.setRGB(x, y, rgb);
}
}
}}
imageComp.setIcon(new ImageIcon(img));
}
catch (Exception e) {
printerr(e.getMessage());
imageComp.setIcon(null);
return;
}
}
@Override
protected void run() {
// Use currently selected address as start address
start = currentAddress;
if (start == null) {
printerr("No address selected! Move the cursor to your image data first.");
return;
}
if(!loadParametersFromComment()) {
setDefaultParameters();
}
// Image window
JFrame frame = new JFrame("Raw Image Viewer");
JPanel toolPanel = new JPanel();
toolPanel.setLayout(new GridLayout(2,1));
JPanel toolPanel1 = new JPanel();
toolPanel1.setLayout(new FlowLayout(FlowLayout.LEFT));
toolPanel.add(toolPanel1);
// save button
JButton saveButton = new JButton("Save parameters");
saveButton.addActionListener((ActionEvent e)->{
storeParametersInComment();
});
toolPanel1.add(saveButton);
// the address buttons
toolPanel1.add(new JLabel("Start address:"));
((JButton)(toolPanel1.add(createSmallButton("-1 row")))).addActionListener((ActionEvent e)->{
setStartAddress(-bytesPerRow);
});
((JButton)(toolPanel1.add(createSmallButton("-4")))).addActionListener((ActionEvent e)->{
setStartAddress(-4);
});
((JButton)(toolPanel1.add(createSmallButton("-2")))).addActionListener((ActionEvent e)->{
setStartAddress(-2);
});
((JButton)(toolPanel1.add(createSmallButton("-1")))).addActionListener((ActionEvent e)->{
setStartAddress(-1);
});
addressComp = new JTextField(10);
addressComp.setEditable(false);
toolPanel1.add(addressComp);
((JButton)(toolPanel1.add(createSmallButton("+1")))).addActionListener((ActionEvent e)->{
setStartAddress(1);
});
((JButton)(toolPanel1.add(createSmallButton("+2")))).addActionListener((ActionEvent e)->{
setStartAddress(2);
});
((JButton)(toolPanel1.add(createSmallButton("+4")))).addActionListener((ActionEvent e)->{
setStartAddress(4);
});
((JButton)(toolPanel1.add(createSmallButton("+1 row")))).addActionListener((ActionEvent e)->{
setStartAddress(bytesPerRow);
});
JPanel toolPanel2 = new JPanel();
toolPanel2.setLayout(new FlowLayout(FlowLayout.LEFT));
toolPanel.add(toolPanel2);
// width input field
toolPanel2.add(new JLabel("Width:"));
SpinnerNumberModel widthModel = new SpinnerNumberModel(width, 0, 10000, 1);
JSpinner widthComp = new JSpinner(widthModel);
widthComp.addChangeListener((ChangeEvent e)->{
width = (int) widthComp.getValue();
onImageChange();
});
toolPanel2.add(widthComp);
// height input field
toolPanel2.add(new JLabel("Height:"));
SpinnerNumberModel heightModel = new SpinnerNumberModel(height, 0, 10000, 1);
JSpinner heightComp = new JSpinner(heightModel);
heightComp.addChangeListener((ChangeEvent e)->{
height = (int) heightComp.getValue();
onImageChange();
});
toolPanel2.add(heightComp);
// format input field
toolPanel2.add(new JLabel("Format:"));
JComboBox formatComp = new JComboBox(formats);
formatComp.setSelectedIndex(format);
formatComp.addActionListener((ActionEvent e)->{
format = formatComp.getSelectedIndex();
planesComp.setEnabled(format==4 || format==5 || format==6);
onImageChange();
});
toolPanel2.add(formatComp);
// number of planes input field
// (only enabled when the corresponding format has been selected)
toolPanel2.add(new JLabel("Planes:"));
SpinnerNumberModel planesModel = new SpinnerNumberModel(numPlanes, 1, 8, 1);
planesComp = new JSpinner(planesModel);
planesComp.addChangeListener((ChangeEvent e)->{
numPlanes = (int) planesComp.getValue();
onImageChange();
});
planesComp.setEnabled(format==4 || format==5 || format==6);
toolPanel2.add(planesComp);
// modulo input field
toolPanel2.add(new JLabel("Modulo:"));
SpinnerNumberModel moduloModel = new SpinnerNumberModel(modulo, 0, 10000, 1);
JSpinner moduloComp = new JSpinner(moduloModel);
moduloComp.addChangeListener((ChangeEvent e)->{
modulo = (int) moduloComp.getValue();
onImageChange();
});
toolPanel2.add(moduloComp);
frame.getContentPane().add(toolPanel, BorderLayout.NORTH);
// the image component and its context menu
imageComp = new JLabel();
imageComp.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
// remember where the user clicked
clickedX = e.getX();
clickedY = e.getY();
}
});
JPopupMenu menu = new JPopupMenu();
JMenuItem gotoItem = new JMenuItem("Go to this row");
gotoItem.addActionListener((ActionEvent e)->{
setStartAddress(clickedY * bytesPerRow);
});
menu.add(gotoItem);
imageComp.setComponentPopupMenu(menu);
// we put in the label showing the image in another panel
// to prevent the label filling the entire scroll pane
// (so that the popup menu only opens when clicking the image)
JPanel imageCompPanel = new JPanel();
imageCompPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
imageCompPanel.add(imageComp);
JScrollPane scrollPane = new JScrollPane(imageCompPanel);
scrollPane.setPreferredSize(new Dimension(640, 400));
frame.getContentPane().add(scrollPane, BorderLayout.CENTER);
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.pack();
frame.setMinimumSize(new Dimension(300, 200));
frame.setResizable(true);
frame.setVisible(true);
onImageChange();
}
}