Git Product home page Git Product logo

Comments (6)

DavBfr avatar DavBfr commented on May 20, 2024 2

Hi,
Don't try Unicode, it is not working at all.
To print Euro sign, use String.fromCharCode(128), using the basic Helvetica embedded font, it works.

from dart_pdf.

DavBfr avatar DavBfr commented on May 20, 2024 1

@erperejildo That's an old issue, it's perfectly working now:

 Future<Uint8List> _generatePdf(PdfPageFormat format, String title) async {
    final pdf = pw.Document();

    final fontData = await rootBundle.load('assets/open-sans.ttf');
    final font = pw.Font.ttf(fontData);

    pdf.addPage(
      pw.Page(
        pageFormat: format,
        build: (context) => pw.Text('Hello €', style: pw.TextStyle(font: font)),
      ),
    );

    return pdf.save();
  }

from dart_pdf.

Icosa2050 avatar Icosa2050 commented on May 20, 2024

Thank you very much for your quick and helpful answer. It does print the symbol. Great so far. Now I will have to tinker around , to replace the symbol in user textfields and from db with the Result of String. fromCharCode(128) expression.

from dart_pdf.

erperejildo avatar erperejildo commented on May 20, 2024

Hi,
Don't try Unicode, it is not working at all.
To print Euro sign, use String.fromCharCode(128), using the basic Helvetica embedded font, it works.

Any reason why this doesn't work? I use a different package that returns a money format based on my language so the only thing I get is the symbol pls the ammount

from dart_pdf.

SilkeNL avatar SilkeNL commented on May 20, 2024

I might be doing something else wrong but I do still have the error on the €-sign.

String.fromCharCode(128) Worked fine

pw.Row( mainAxisAlignment: pw.MainAxisAlignment.end, children: [ pw.Text('Total price: €539.00', style: pw.TextStyle(fontSize: 16)), ]),

from dart_pdf.

FallasB avatar FallasB commented on May 20, 2024

Same as @SilkeNL, with latest version 3.8.3 on flutter web

from dart_pdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.