-
I couldn't find documentation mentioning wether it's possible to create tables for a new pdf that I'm building. is it possible I can create tables with pdfpig? if yes, could you provide me an example, please. |
Beta Was this translation helpful? Give feedback.
Answered by
BobLd
Nov 5, 2024
Replies: 1 comment 2 replies
-
hmm I guess maybe https://github.com/BobLd/tabula-sharp can help me? eventhough it seems to primary be for exacting data from tables. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi @markat1, tabula-sharp is only for extracting tables, and not for table creations.
The concept of 'table' does not exist in pdf (hence the need to libraries to extract tabular data)... In order for you to display a table in a pdf document, you will need to draw the line and position the text yourself.
What could be added in PdfPig is a helper class top make it easier to draw table, but this is not a short term plan.