-
Notifications
You must be signed in to change notification settings - Fork 950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save control point information on LTCurve #672
Labels
Comments
I need this feature too. Is someone working on it? Otherwise i can also offer to work on a PR? |
JulianFeinauer
added a commit
to JulianFeinauer/pdfminer.six
that referenced
this issue
Aug 26, 2022
Add raw points to get full information from bezier segments and dashing style
JulianFeinauer
added a commit
to JulianFeinauer/pdfminer.six
that referenced
this issue
Aug 26, 2022
Add raw points to get full information from bezier segments and dashing style
JulianFeinauer
added a commit
to JulianFeinauer/pdfminer.six
that referenced
this issue
Aug 26, 2022
Add raw points to get full information from bezier segments and dashing style
@JulianFeinauer PR is more than welcome here! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature request
Save control point information on bezier curves during parsing (as suggested by @jsvine in #530 (comment)).
Description
I need to render bezier curves in pdfs with different levels of resolutions and what jsvine suggests in PR-comment would solve my problem.
Since I could not find any discussion regarding jsvine's suggestion I made this issue. Maybe there already exists an issue for this?
Example of use case
Example, this file contains a simple circle. Using a function like cubic_bezier below, I would like to be able to render points on the circle. Moreover, I need to be able to generate the points with different levels of resolution (e.g.res=5, res=10 and res=100) so the original control points needs to be saved on the curve object somehow.
Image of rendered points from bezier curve in pdf file
The text was updated successfully, but these errors were encountered: