andrey-ushakov / esc_pos_utils

Basic Flutter/Dart classes for ESC/POS printing
BSD 3-Clause "New" or "Revised" License
140 stars 308 forks source link

QR is printed twice and textEncoded could not align to center, how to decrease the large space come between text encoded words #70

Open mustafa2011 opened 2 years ago

mustafa2011 commented 2 years ago
import 'package:bluetooth_thermal_printer/bluetooth_thermal_printer.dart';
import 'package:esc_pos_utils_plus/esc_pos_utils.dart';

Future<List<int>> getTicket() async {
    List<int> bytes = [];
    CapabilityProfile profile = await CapabilityProfile.load();
    final generator = Generator(PaperSize.mm58, profile);
    const characterSet = 'CP1256';

   Uint8List encSeller = await CharsetConverter.encode(characterSet, "النجم السادس");
   bytes += generator.hr(ch: '=', linesAfter: 1);
   bytes += generator.qrcode("www.google.com", size: QRSize.Size8);
   bytes += generator.textEncoded(encSeller,
        styles: const PosStyles(
          height: PosTextSize.size2,
          width: PosTextSize.size2,
          align: PosAlign.center,
          bold: true,
        ));
    bytes += generator.text("${Utils.formatDate(DateTime.now())}",
        styles: const PosStyles(align: PosAlign.center), linesAfter: 1);

    bytes += generator.cut();
    return bytes;
  }

// I'm using IposPrinter thermal POS printer

img

iyashiyas commented 2 years ago

How did you get the correct arabic text ? we are using epson printer ,arabic not printing correctly with encoding

mustafa2011 commented 2 years ago

Connect me whatsApp 00966502300618

On Tue, May 24, 2022, 4:30 PM Shiyas @.***> wrote:

How did you get the correct arabic text ? we are using epson printer ,arabic not printing correctly with encoding

— Reply to this email directly, view it on GitHub https://github.com/andrey-ushakov/esc_pos_utils/issues/70#issuecomment-1135927744, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABY5BME6BYY6TBQL4JUWYYDVLTKYXANCNFSM5P5LB4QQ . You are receiving this because you authored the thread.Message ID: @.***>

bashiryousufy commented 2 years ago

I have the same issue with this plugin.

@mustafa2011 did you manage to find any work around for this issue?

mustafa2011 commented 2 years ago

No, I didn't.

On Sat, Jul 23, 2022, 1:14 PM bashir yousufy @.***> wrote:

I have the same issue with this plugin.

@mustafa2011 https://github.com/mustafa2011 did you manage to find any work around for this issue?

— Reply to this email directly, view it on GitHub https://github.com/andrey-ushakov/esc_pos_utils/issues/70#issuecomment-1193100770, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABY5BMD6VOJ3OYUZRGRG6VLVVPAZLANCNFSM5P5LB4QQ . You are receiving this because you were mentioned.Message ID: @.***>