Git Product home page Git Product logo

Comments (6)

DavBfr avatar DavBfr commented on May 20, 2024

I think you should be able to create the drawArc() function from the drawEllipsis() content. To draw the ellipsis, I draw 4 cubic bézier curves. If you create a new function that draws only one, that should do the trick.

Or directly expose a bézier curve function in graphics.dart:

void curveTo(double x1, double y1, double x2, double y2, double x3, double y3) {
    buf.putString("$x1 $y1 $x2 $y2 $x3 $y3 c\n");
  }

Such curves are defined by four points: the current point (use moveTo()), the final point (x3, y3), and two control points (x1, y1) and (x2, y2).
https://en.wikipedia.org/wiki/B%C3%A9zier_curve

From that, you can find how to create an arc on the Internet.

from dart_pdf.

biancashouse avatar biancashouse commented on May 20, 2024

Dave,

Your response is much appreciated. Now I have multiple options: generate pdf, generate png from screen. Will try to use both. Many thanks.

from dart_pdf.

DavBfr avatar DavBfr commented on May 20, 2024

If you manage to create the function or some others, don't hesitate to create a pull request. I will be happy to get contributions.

from dart_pdf.

biancashouse avatar biancashouse commented on May 20, 2024

from dart_pdf.

DavBfr avatar DavBfr commented on May 20, 2024

I don't know if there is a widget to scroll in both directions.

from dart_pdf.

magnatronus avatar magnatronus commented on May 20, 2024

@biancashouse I have been 'playing around' with a high level wrapper for Dave's PDF library here. I use a Flutter plugin to view the generated PDF flutter_full_pdf_viewer. It does not scroll in both directions but it will allow pinch and zoom of each page of the viewer (just take a look at the example project)

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.