You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So basically I'm trying to add a stamp after a receipt. I add the image after the text and it prints but doesn't add space after the stamp, although I've tried with FeedLines, FullCut. (This happens when the printer starts from cold boot )
When I'm trying to print another receipt it doesn't print the begining of the receipt like in the picture.
This is the code
` var e = new EPSON();
var buffer = ByteSplicer.Combine(
e.SetStyles(PrintStyle.Bold),
e.FeedLines(3),
e.LeftAlign(),
e.PrintLine($"------------------------------------------------"),
e.SetStyles(PrintStyle.None),
e.FeedLines(1),
e.PrintLine("S.C. ALTEX LOGISTIC & DISTRIBUTION SRL"),
e.PrintLine("Str. Olteniei nr. 22, Piatra Neamt, Jud. Neamt"),
e.PrintLine("CIF: RO14966155 J27/563/2002"),
e.FeedLines(3),
e.PrintLine("CHITANTA RAMBURS CONT COLECTOR"),
e.PrintLine("SERIA "+ serieChitanta +" NR. "+ NumarChitanta+ ""),
e.FeedLines(3),
e.PrintLine("Am primit de la " + client),
e.PrintLine("CIF "+ cif +" , J: "+ j+""),
e.PrintLine("Suma de " + suma +" lei"),
e.PrintLine("Adica OSutaNouaZeciSiNouaDeLei"),
e.PrintLine("Reprezentand ramburs AWB: " + awb),
e.PrintLine("Tiparit la data de "+ datePrint +""),
e.PrintLine("Curier: "+ curier),
e.FeedLines(3),
e.LeftAlign(),
e.PrintLine("Va multumim ca ati apelat la serviciile"),
e.PrintLine("ALTEX CURIER"),
e.FullCutAfterFeed(2),
e.PrintImage(m_Bytes,false,true,-1,0),
e.FullCutAfterFeed(3),
e.FeedLines(3)
) ; ; ; ;
await bluetoothSocket.OutputStream.WriteAsync(buffer, 0, buffer.Length);`
Sorry for my bad English, since is not my main language.
The text was updated successfully, but these errors were encountered:
So basically I'm trying to add a stamp after a receipt. I add the image after the text and it prints but doesn't add space after the stamp, although I've tried with FeedLines, FullCut. (This happens when the printer starts from cold boot )
When I'm trying to print another receipt it doesn't print the begining of the receipt like in the picture.
This is the code
` var e = new EPSON();
var buffer = ByteSplicer.Combine(
Sorry for my bad English, since is not my main language.
The text was updated successfully, but these errors were encountered: