I am working with Epson TMU230 posprinter with JavaPOS adk 1.11.18. I written a sample program which is working fine with small issue. It is giving more space on top of the paper as shown in the figure.

This is my program. Is there any mistake?
POSPrinterControl19 ptr = (POSPrinterControl19)new POSPrinter();
try{
ptr.open(printer);
ptr.claim(1000);
ptr.setDeviceEnabled(true);
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|2C\u001b|bC\u001b|cARestaurant Name\u001b|N\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|bC\u001b|cAPrinter Name\u001b|N\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "KOT:"+kot);
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|rATABLE:"+table+"\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, empid);
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|rA"+date+"\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|cA"+sep+"\n");
------------List of items--------
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, qty + item + "\n");
if(specialInstuctions)
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|bC"+spls+"\u001b|N\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|20uF");
--------------------------------
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|cA"+sep+"\n");
ptr.printNormal(POSPrinterConst.PTR_S_RECEIPT, "\u001b|fP");
ptr.setDeviceEnabled(false);
ptr.release();
ptr.close();
}catch(JposException ex){
throw new PrintException(ex.toString());
}
Please any body help me. I don't have documentation for this API. I don't have any control on font and color setting while printing the receipt. Does any body know anything about this.
Thanks in advance.