2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2019 Kevin Lamonte
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
31 import java
.awt
.image
.BufferedImage
;
33 import jexer
.backend
.ECMA48Terminal
;
34 import jexer
.backend
.MultiScreen
;
35 import jexer
.backend
.SwingTerminal
;
36 import jexer
.bits
.Cell
;
37 import jexer
.event
.TCommandEvent
;
38 import jexer
.event
.TKeypressEvent
;
39 import jexer
.event
.TMouseEvent
;
40 import jexer
.event
.TResizeEvent
;
41 import static jexer
.TCommand
.*;
42 import static jexer
.TKeypress
.*;
45 * TImage renders a piece of a bitmap image on screen.
47 public class TImage
extends TWidget
implements EditMenuUser
{
49 // ------------------------------------------------------------------------
50 // Constants --------------------------------------------------------------
51 // ------------------------------------------------------------------------
54 * Selections for fitting the image to the text cells.
63 * Stretch/shrink the image in both directions to fully fill the text
69 * Scale the image, preserving aspect ratio, to fill the text area
70 * width/height (like letterbox). The background color for the
71 * letterboxed area is specified in scaleBackColor.
76 // ------------------------------------------------------------------------
77 // Variables --------------------------------------------------------------
78 // ------------------------------------------------------------------------
81 * Scaling strategy to use.
83 private Scale scale
= Scale
.NONE
;
86 * Scaling strategy to use.
88 private java
.awt
.Color scaleBackColor
= java
.awt
.Color
.BLACK
;
91 * The action to perform when the user clicks on the image.
93 private TAction clickAction
;
96 * The image to display.
98 private BufferedImage image
;
101 * The original image from construction time.
103 private BufferedImage originalImage
;
106 * The current scaling factor for the image.
108 private double scaleFactor
= 1.0;
111 * The current clockwise rotation for the image.
113 private int clockwise
= 0;
116 * If true, this widget was resized and a new scaled image must be
119 private boolean resized
= false;
122 * Left column of the image. 0 is the left-most column.
127 * Top row of the image. 0 is the top-most row.
132 * The cells containing the broken up image pieces.
134 private Cell cells
[][];
137 * The number of rows in cells[].
139 private int cellRows
;
142 * The number of columns in cells[].
144 private int cellColumns
;
147 * Last text width value.
149 private int lastTextWidth
= -1;
152 * Last text height value.
154 private int lastTextHeight
= -1;
156 // ------------------------------------------------------------------------
157 // Constructors -----------------------------------------------------------
158 // ------------------------------------------------------------------------
161 * Public constructor.
163 * @param parent parent widget
164 * @param x column relative to parent
165 * @param y row relative to parent
166 * @param width number of text cells for width of the image
167 * @param height number of text cells for height of the image
168 * @param image the image to display
169 * @param left left column of the image. 0 is the left-most column.
170 * @param top top row of the image. 0 is the top-most row.
172 public TImage(final TWidget parent
, final int x
, final int y
,
173 final int width
, final int height
,
174 final BufferedImage image
, final int left
, final int top
) {
176 this(parent
, x
, y
, width
, height
, image
, left
, top
, null);
180 * Public constructor.
182 * @param parent parent widget
183 * @param x column relative to parent
184 * @param y row relative to parent
185 * @param width number of text cells for width of the image
186 * @param height number of text cells for height of the image
187 * @param image the image to display
188 * @param left left column of the image. 0 is the left-most column.
189 * @param top top row of the image. 0 is the top-most row.
190 * @param clickAction function to call when mouse is pressed
192 public TImage(final TWidget parent
, final int x
, final int y
,
193 final int width
, final int height
,
194 final BufferedImage image
, final int left
, final int top
,
195 final TAction clickAction
) {
197 // Set parent and window
198 super(parent
, x
, y
, width
, height
);
200 setCursorVisible(false);
201 this.originalImage
= image
;
204 this.clickAction
= clickAction
;
209 // ------------------------------------------------------------------------
210 // Event handlers ---------------------------------------------------------
211 // ------------------------------------------------------------------------
214 * Handle mouse press events.
216 * @param mouse mouse button press event
219 public void onMouseDown(final TMouseEvent mouse
) {
220 if (clickAction
!= null) {
221 clickAction
.DO(this);
229 * @param keypress keystroke event
232 public void onKeypress(final TKeypressEvent keypress
) {
233 if (!keypress
.getKey().isFnKey()) {
234 if (keypress
.getKey().getChar() == '+') {
235 // Make the image bigger.
241 if (keypress
.getKey().getChar() == '-') {
242 // Make the image smaller.
249 if (keypress
.equals(kbAltUp
)) {
250 // Make the image bigger.
256 if (keypress
.equals(kbAltDown
)) {
257 // Make the image smaller.
263 if (keypress
.equals(kbAltRight
)) {
271 if (keypress
.equals(kbAltLeft
)) {
272 // Rotate counter-clockwise.
282 if (keypress
.equals(kbShiftLeft
)) {
285 setScaleType(Scale
.SCALE
);
288 setScaleType(Scale
.NONE
);
291 setScaleType(Scale
.STRETCH
);
295 if (keypress
.equals(kbShiftRight
)) {
298 setScaleType(Scale
.STRETCH
);
301 setScaleType(Scale
.SCALE
);
304 setScaleType(Scale
.NONE
);
309 // Pass to parent for the things we don't care about.
310 super.onKeypress(keypress
);
314 * Handle resize events.
316 * @param event resize event
319 public void onResize(final TResizeEvent event
) {
320 // Get my width/height set correctly.
321 super.onResize(event
);
323 if (scale
== Scale
.NONE
) {
331 * Handle posted command events.
333 * @param command command event
336 public void onCommand(final TCommandEvent command
) {
337 if (command
.equals(cmCopy
)) {
338 // Copy image to clipboard.
339 getClipboard().copyImage(image
);
344 // ------------------------------------------------------------------------
345 // TWidget ----------------------------------------------------------------
346 // ------------------------------------------------------------------------
355 // We have already broken the image up, just draw the last set of
357 for (int x
= 0; (x
< getWidth()) && (x
+ left
< cellColumns
); x
++) {
358 if ((left
+ x
) * lastTextWidth
> image
.getWidth()) {
362 for (int y
= 0; (y
< getHeight()) && (y
+ top
< cellRows
); y
++) {
363 if ((top
+ y
) * lastTextHeight
> image
.getHeight()) {
366 assert (x
+ left
< cellColumns
);
367 assert (y
+ top
< cellRows
);
369 getWindow().putCharXY(x
, y
, cells
[x
+ left
][y
+ top
]);
375 // ------------------------------------------------------------------------
376 // TImage -----------------------------------------------------------------
377 // ------------------------------------------------------------------------
380 * Size cells[][] according to the screen font size.
382 * @param always if true, always resize the cells
384 private void sizeToImage(final boolean always
) {
385 int textWidth
= getScreen().getTextWidth();
386 int textHeight
= getScreen().getTextHeight();
389 image
= rotateImage(originalImage
, clockwise
);
390 image
= scaleImage(image
, scaleFactor
, getWidth(), getHeight(),
391 textWidth
, textHeight
);
394 if ((always
== true) ||
397 && (textWidth
!= lastTextWidth
)
399 && (textHeight
!= lastTextHeight
))
403 cellColumns
= image
.getWidth() / textWidth
;
404 if (cellColumns
* textWidth
< image
.getWidth()) {
407 cellRows
= image
.getHeight() / textHeight
;
408 if (cellRows
* textHeight
< image
.getHeight()) {
412 // Break the image up into an array of cells.
413 cells
= new Cell
[cellColumns
][cellRows
];
415 for (int x
= 0; x
< cellColumns
; x
++) {
416 for (int y
= 0; y
< cellRows
; y
++) {
418 int width
= textWidth
;
419 if ((x
+ 1) * textWidth
> image
.getWidth()) {
420 width
= image
.getWidth() - (x
* textWidth
);
422 int height
= textHeight
;
423 if ((y
+ 1) * textHeight
> image
.getHeight()) {
424 height
= image
.getHeight() - (y
* textHeight
);
427 Cell cell
= new Cell();
428 cell
.setImage(image
.getSubimage(x
* textWidth
,
429 y
* textHeight
, width
, height
));
435 lastTextWidth
= textWidth
;
436 lastTextHeight
= textHeight
;
439 if ((left
+ getWidth()) > cellColumns
) {
440 left
= cellColumns
- getWidth();
445 if ((top
+ getHeight()) > cellRows
) {
446 top
= cellRows
- getHeight();
454 * Get the top corner to render.
456 * @return the top row
458 public int getTop() {
463 * Set the top corner to render.
465 * @param top the new top row
467 public void setTop(final int top
) {
469 if (this.top
> cellRows
- getHeight()) {
470 this.top
= cellRows
- getHeight();
478 * Get the left corner to render.
480 * @return the left column
482 public int getLeft() {
487 * Set the left corner to render.
489 * @param left the new left column
491 public void setLeft(final int left
) {
493 if (this.left
> cellColumns
- getWidth()) {
494 this.left
= cellColumns
- getWidth();
502 * Get the number of text cell rows for this image.
504 * @return the number of rows
506 public int getRows() {
511 * Get the number of text cell columns for this image.
513 * @return the number of columns
515 public int getColumns() {
520 * Get the raw (unprocessed) image.
524 public BufferedImage
getImage() {
525 return originalImage
;
529 * Set the raw image, and reprocess to make the visible image.
531 * @param image the new image
533 public void setImage(final BufferedImage image
) {
534 this.originalImage
= image
;
540 * Get the visible (processed) image.
542 * @return the image that is currently on screen
544 public BufferedImage
getVisibleImage() {
549 * Get the scaling strategy.
551 * @return Scale.NONE, Scale.STRETCH, etc.
553 public Scale
getScaleType() {
558 * Set the scaling strategy.
560 * @param scale Scale.NONE, Scale.STRETCH, etc.
562 public void setScaleType(final Scale scale
) {
569 * Get the scale factor.
571 * @return the scale factor
573 public double getScaleFactor() {
578 * Set the scale factor. 1.0 means no scaling.
580 * @param scaleFactor the new scale factor
582 public void setScaleFactor(final double scaleFactor
) {
583 this.scaleFactor
= scaleFactor
;
589 * Get the rotation, as degrees.
591 * @return the rotation in degrees
593 public int getRotation() {
604 // Don't know how this happened, but fix it.
613 * Set the rotation, as degrees clockwise.
615 * @param rotation 0, 90, 180, or 270
617 public void setRotation(final int rotation
) {
632 // Don't know how this happened, but fix it.
642 * Scale an image by to be scaleFactor size.
644 * @param image the image to scale
645 * @param factor the scale to make the new image
646 * @param width the number of text cell columns for the destination image
647 * @param height the number of text cell rows for the destination image
648 * @param textWidth the width in pixels for one text cell
649 * @param textHeight the height in pixels for one text cell
651 private BufferedImage
scaleImage(final BufferedImage image
,
652 final double factor
, final int width
, final int height
,
653 final int textWidth
, final int textHeight
) {
655 if ((scale
== Scale
.NONE
) && (Math
.abs(factor
- 1.0) < 0.03)) {
656 // If we are within 3% of 1.0, just return the original image.
665 BufferedImage newImage
= null;
669 destWidth
= (int) (image
.getWidth() * factor
);
670 destHeight
= (int) (image
.getHeight() * factor
);
671 newImage
= new BufferedImage(destWidth
, destHeight
,
672 BufferedImage
.TYPE_INT_ARGB
);
675 destWidth
= width
* textWidth
;
676 destHeight
= height
* textHeight
;
677 newImage
= new BufferedImage(destWidth
, destHeight
,
678 BufferedImage
.TYPE_INT_ARGB
);
681 double a
= (double) image
.getWidth() / image
.getHeight();
682 double b
= (double) (width
* textWidth
) / (height
* textHeight
);
687 System.err.println("Scale: original " + image.getWidth() +
688 "x" + image.getHeight());
689 System.err.println(" screen " + (width * textWidth) +
690 "x" + (height * textHeight));
691 System.err.println("A " + a + " B " + b);
695 // Horizontal letterbox
696 destWidth
= width
* textWidth
;
697 destHeight
= (int) (destWidth
/ a
);
698 y
= ((height
* textHeight
) - destHeight
) / 2;
701 System.err.println("Horizontal letterbox: " + destWidth +
702 "x" + destHeight + ", Y offset " + y);
705 // Vertical letterbox
706 destHeight
= height
* textHeight
;
707 destWidth
= (int) (destHeight
* a
);
708 x
= ((width
* textWidth
) - destWidth
) / 2;
711 System.err.println("Vertical letterbox: " + destWidth +
712 "x" + destHeight + ", X offset " + x);
715 newImage
= new BufferedImage(width
* textWidth
, height
* textHeight
,
716 BufferedImage
.TYPE_INT_ARGB
);
720 java
.awt
.Graphics gr
= newImage
.createGraphics();
721 if (scale
== Scale
.SCALE
) {
722 gr
.setColor(scaleBackColor
);
723 gr
.fillRect(0, 0, width
* textWidth
, height
* textHeight
);
725 gr
.drawImage(image
, x
, y
, destWidth
, destHeight
, null);
731 * Rotate an image either clockwise or counterclockwise.
733 * @param image the image to scale
734 * @param clockwise number of turns clockwise
736 private BufferedImage
rotateImage(final BufferedImage image
,
737 final int clockwise
) {
739 if (clockwise
% 4 == 0) {
743 BufferedImage newImage
= null;
745 if (clockwise
% 4 == 1) {
746 // 90 degrees clockwise
747 newImage
= new BufferedImage(image
.getHeight(), image
.getWidth(),
748 BufferedImage
.TYPE_INT_ARGB
);
749 for (int x
= 0; x
< image
.getWidth(); x
++) {
750 for (int y
= 0; y
< image
.getHeight(); y
++) {
751 newImage
.setRGB(y
, x
,
752 image
.getRGB(x
, image
.getHeight() - 1 - y
));
755 } else if (clockwise
% 4 == 2) {
756 // 180 degrees clockwise
757 newImage
= new BufferedImage(image
.getWidth(), image
.getHeight(),
758 BufferedImage
.TYPE_INT_ARGB
);
759 for (int x
= 0; x
< image
.getWidth(); x
++) {
760 for (int y
= 0; y
< image
.getHeight(); y
++) {
761 newImage
.setRGB(x
, y
,
762 image
.getRGB(image
.getWidth() - 1 - x
,
763 image
.getHeight() - 1 - y
));
766 } else if (clockwise
% 4 == 3) {
767 // 270 degrees clockwise
768 newImage
= new BufferedImage(image
.getHeight(), image
.getWidth(),
769 BufferedImage
.TYPE_INT_ARGB
);
770 for (int x
= 0; x
< image
.getWidth(); x
++) {
771 for (int y
= 0; y
< image
.getHeight(); y
++) {
772 newImage
.setRGB(y
, x
,
773 image
.getRGB(image
.getWidth() - 1 - x
, y
));
781 // ------------------------------------------------------------------------
782 // EditMenuUser -----------------------------------------------------------
783 // ------------------------------------------------------------------------
786 * Check if the cut menu item should be enabled.
788 * @return true if the cut menu item should be enabled
790 public boolean isEditMenuCut() {
795 * Check if the copy menu item should be enabled.
797 * @return true if the copy menu item should be enabled
799 public boolean isEditMenuCopy() {
804 * Check if the paste menu item should be enabled.
806 * @return true if the paste menu item should be enabled
808 public boolean isEditMenuPaste() {
813 * Check if the clear menu item should be enabled.
815 * @return true if the clear menu item should be enabled
817 public boolean isEditMenuClear() {