我无法使用blue_Thermal_Printer打印图像(打印随机字符)Flutter

问题描述 投票:0回答:2

我的代码有什么问题吗?

   var response = await http.get(Uri.parse(
        "https://thumbs.dreamstime.com/b/jpg-file-icon-logo-element-illustration-design-155443757.jpg"));
    Uint8List bytesNetwork = response.bodyBytes;
    Uint8List imageBytesFromNetwork = bytesNetwork.buffer.asUint8List();

        await bluetooth.printImageBytes(imageBytesFromNetwork);
flutter printing
2个回答
0
投票

尝试降低图像的像素,我也遇到了类似的问题。


0
投票

图像尺寸最大为 300pk X 300 px

© www.soinside.com 2019 - 2024. All rights reserved.