Files
unicenta-opos/src/main/java/com/unicenta/pos/printer/ticket/BasicTicket.java
T

203 lines
4.9 KiB
Java
Raw Normal View History

2023-04-06 18:58:04 +01:00
// uniCenta oPOS - Touch Friendly Point Of Sale
// Copyright (c) 2009-2018 uniCenta & previous Openbravo POS works
// https://unicenta.com
//
// This file is part of uniCenta oPOS
//
// uniCenta oPOS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// uniCenta oPOS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with uniCenta oPOS. If not, see <http://www.gnu.org/licenses/>.
package com.unicenta.pos.printer.ticket;
import lombok.extern.log4j.Log4j2;
import lombok.extern.slf4j.Slf4j;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.ArrayList;
import java.util.Iterator;
/**
* @author JG uniCenta
*/
@Slf4j
public abstract class BasicTicket implements PrintItem {
/**
*
*/
protected java.util.List<PrintItem> m_aCommands;
/**
*
*/
protected PrintItemLine pil;
/**
*
*/
protected int m_iBodyHeight;
2023-10-05 12:06:34 +01:00
/**
* Creates a new instance of AbstractTicket
*/
public BasicTicket() {
2023-04-06 18:58:04 +01:00
// JG 16 May 12 use diamond inference
2023-10-05 12:06:34 +01:00
m_aCommands = new ArrayList<>();
pil = null;
m_iBodyHeight = 0;
}
2023-04-06 18:58:04 +01:00
/**
* @return
*/
protected abstract Font getBaseFont();
/**
* @return
*/
protected abstract int getFontHeight();
/**
* @return
*/
protected abstract double getImageScale();
/**
* @return
*/
@Override
2023-10-05 12:06:34 +01:00
public int getHeight() {
return m_iBodyHeight;
}
2023-04-06 18:58:04 +01:00
/**
* @param g2d
* @param x
* @param y
* @param width
*/
@Override
2023-10-05 12:06:34 +01:00
public void draw(Graphics2D g2d, int x, int y, int width) {
int currenty = y;
for (PrintItem pi : m_aCommands) {
pi.draw(g2d, x, currenty, width);
currenty += pi.getHeight();
}
2023-04-06 18:58:04 +01:00
2023-10-05 12:06:34 +01:00
saveTicket(g2d, x, y, width);
}
private void saveTicket(Graphics2D g2d, int x, int y, int width) {
int receiptHeight = 5;
PrintItem pi;
for(Iterator i$ = m_aCommands.iterator(); i$.hasNext(); receiptHeight += pi.getHeight()) {
pi = (PrintItem)i$.next();
}
BufferedImage image = new BufferedImage(width + 10, receiptHeight, 1);
2023-09-28 16:04:55 +01:00
g2d = image.createGraphics();
2023-10-05 12:06:34 +01:00
int currenty = y;
2023-09-28 16:04:55 +01:00
2023-10-05 12:06:34 +01:00
for(Iterator i$ = this.m_aCommands.iterator(); i$.hasNext(); currenty += pi.getHeight()) {
pi = (PrintItem)i$.next();
pi.draw(g2d, x, currenty, width);
}
2023-09-28 16:04:55 +01:00
try {
ImageIO.write(this.negative(image), "png", new File(System.getProperty("user.home") + "/test.png"));
2023-10-05 12:06:34 +01:00
}
catch (Exception e) {
System.out.println("Error serialising receipt image !!! : " + e);
2023-09-28 16:04:55 +01:00
}
2023-10-05 12:06:34 +01:00
}
2023-04-06 18:58:04 +01:00
2023-09-28 16:04:55 +01:00
public BufferedImage negative(BufferedImage img) {
2023-10-05 12:06:34 +01:00
for (int x = 0; x < img.getWidth(); ++x) {
for (int y = 0; y < img.getHeight(); ++y) {
2023-09-28 16:04:55 +01:00
int RGBA = img.getRGB(x, y);
Color col = new Color(RGBA, true);
col = new Color(Math.abs(col.getRed() - 255), Math.abs(col.getGreen() - 255), Math.abs(col.getBlue() - 255));
img.setRGB(x, y, col.getRGB());
}
}
return img;
}
2023-04-06 18:58:04 +01:00
/**
* @return
*/
public java.util.List<PrintItem> getCommands() {
2023-10-05 12:06:34 +01:00
return m_aCommands;
}
2023-04-06 18:58:04 +01:00
2023-10-05 12:06:34 +01:00
// INTERFAZ PRINTER 2
2023-04-06 18:58:04 +01:00
/**
* @param image
*/
2023-10-05 12:06:34 +01:00
public void printImage(BufferedImage image) {
2023-04-06 18:58:04 +01:00
2023-10-05 12:06:34 +01:00
PrintItem pi = new PrintItemImage(image, getImageScale());
m_aCommands.add(pi);
m_iBodyHeight += pi.getHeight();
}
2023-04-06 18:58:04 +01:00
/**
* @param type
* @param position
* @param code
*/
public void printBarCode(String type, String position, String code) {
2023-10-05 12:06:34 +01:00
PrintItem pi = new PrintItemBarcode(type, position, code, getImageScale());
m_aCommands.add(pi);
m_iBodyHeight += pi.getHeight();
}
2023-04-06 18:58:04 +01:00
/**
* @param iTextSize
*/
public void beginLine(int iTextSize) {
2023-10-05 12:06:34 +01:00
pil = new PrintItemLine(iTextSize, getBaseFont(), getFontHeight());
}
2023-04-06 18:58:04 +01:00
/**
* @param iStyle
* @param sText
*/
public void printText(int iStyle, String sText) {
2023-10-05 12:06:34 +01:00
if (pil != null) {
pil.addText(iStyle, sText);
}
}
2023-04-06 18:58:04 +01:00
/**
*
*/
public void endLine() {
2023-10-05 12:06:34 +01:00
if (pil != null) {
m_aCommands.add(pil);
m_iBodyHeight += pil.getHeight();
pil = null;
}
}
}