Nick, I get the impression you're reading my mind. Every month you come up at least with one topic that's currently on my learning list. Thank you so much, and keep up reading our minds :)
Me too. I was thinking about this topic today for my future hobby project and all of sudden he has made a video on this which is no where related to videos he made recently. I can't believe it.
Awesome to see you create a video on this. I've been using this for the last few months for a client. There are still some rough spots, but it has been amazing for creating Pdf's. If you're doing mostly simple things, this will be perfect for you. As you get to some of the complex stuff, specially if it requires measurements due to needing to wrap contests or show them in a non supported layout or ordering type, it can be a bit touch and go to get what you want. Overall highly recommend this library.
Nick ,junior developer here - you along with Fireship are the 2 reasons I'm working as a developer today, you guys are clear ,fast paced and great teachers! Keep it up man.
my current approach is to use puppeteer sharp to convert an html page using chromium. the html page is generated by a blazor page / component, this way i can visit the page to see how it displays, also making it user accessible for preview. The downside of this is that puppeteer is very heavy and it is a little complicated (but possible) to write cross platform code due to the native part of the process. QuestPDF looks very interesting!
We've been developing with Quest for a while. Really useful, great for a large number of use cases and a gentle learning curve. Highly recommend for small to mid-tier projects (and maybe beyond)
The biggest job for me is generating pdfs from templates. The goal is to generate as fast as possible. On the templates there are fields that have to have different values for each pdf file. The fastest I've achieved so far was the Aspose package, generating from MS WORD templates, for the simpler templates I could achieve 1000 pdf/sec.
What my team is currently using is Gotenburg to give html styling together with Scriban to script the different values to generate our pdfs from templates we create ourselves. Has a bit of a learning curve but afterwards it is very easy to use as very fast to generate the pdfs
We are using wkhtmltopdf. As the name implies you can use a html template and replace some variables in there with your wished content. Easy styling, easy layout but I did not check the speed of it.
This is a pretty impressive library, it took me just half a day to recreate a few documents at my work, way less painful than anything else I've used to generate report documents.
This is amazing! That hot reload would've saved me sooo much time years ago when I last had to generate PDFs for a work project, if only it had been around back in the mid 2000s! 😅
How this is possible 😮. I was thinking about this topic today and all of sudden you have made a video on this which is no where related to videos you have made recently. It's a miracle ✨ 💯
Me: Trying to convince my multi-million dollar a year client to pay $500/year for the commercial license Client: Can’t we just build our own from scratch?
wow this is an amazing dev experience for something that has always been way too complicated that is used in so many different use cases. Thanks for sharing! adding this to my tool box!!!!.
I actually used this library about a year ago to generate mini prints of QR codes and additional information in a two column design and then cut automatically after print. One of the most convenient PDF generation tools I've used and have sent support. The only issue I had with it was generating large PDFs in megabytes because a font set gets embedded with it. At the time I used it, the only fix was embedding a stripped down font set so you can generate PDFs that are kilobytes in size. Otherwise, an amazing library!
It would be nice in your next video to show how to sign this PDF, as it is something that is becoming a requirement in more and more businesses. Very good video. Keep it up.
Great video! There’re also libraries which build PDF based on HTML page. This could be convenient for backend developers with basic frontend knowledge. With HTML template you can gain same preview experience with well-known CSS styling on board
@@RenjithRs123 I use puppeteersharp in my project, basically it runs a chrome browserless in the background and use the "print" feature of the browser to create the pdf. I can generate some very complex templates and pdf's.
I've been using SelectPDF for years now. It's not as simple as this but it can take an entire html page with css included and create a PDF from that. It's enough for what I'm doing right now but I might give this a try at a later time.
to Generate Pdf's i've using the razorlight lib with wkhtmltoPdf lib, i get the cshtml razor, and trasform in string html to pass as content on wkthml pdf content prop and works well
Great library! Used it in recent project for (not maybe ideal use case, but still it was best option) to generate photobooks with custom layouts. Works like a charm.
Thanks for that very useful package, @Nick Chapsas! Here, I'd like to ask for some .Net solutions but for populating with data of already-defined PDF template files.
ABCpdf is what the organization I'm affiliated with uses. The API is akin to something from the 1990s. When .NET Core arrived and we inquired when they would support it, their answer was "Why would we do that. You can just use .NET Framework". Eventually they came around on that one, but not until after using having to segment off special services written in legacy frameworks to support functionality.
I came from the same sort of background. I just finished rebuilding our generator from ABCpdf to QuestPdf, and the speed upgrade were so enormous that we didn't even bother to measure it, at the very least 20x faster, might even be 50x. The biggest problem was that I had to make it 100% backwards compatible, which caused some issues, as we had support for HTML in the ABCpdf library, which QuestPdf doesn't.
I use QuestPDF and like it. I love seeing the previewer in action. I knew about it, but didn't know it was that easy to use. The issues I've run into with QuestPDF are situations when content overflows in some way. In a large data-driven pdf, I've found it hard to track down exactly where the failure is. I ended up creating an integration test that does several iterations of my pdf, and I have logic for retrying with smaller data sets to isolate issues. I would rather not have to go to lengths like that, but it's still a good library.
Awesome exactly what i was looking for thank you much Nick Chapas. I have tried so many options but i couldn't get anything close to it with community license
Thanks for creating this video, we want more video on PDF read, manipulate and re-generate, upload, download and merge pages and split, rotate PDFs. Please.
Looks like a very healthy alternative to telerik reporting which we use at work these days. Although we would lose support for exporting the reports we create to microsoft office formats.
The library is great indeed, but I met one drawback of this lib. It's size of generated file. I need special characters in my document and to do that, I had to use Fallback of another font. Additional fonts may contain thousands of glyphs and all of them are used in generating document, when i need onlyy two of them. Therefore my generated document with 4 pages has size about 6 Mb, this is too much. I tried to use another font without fallbacks, and that helped for sure, but still too large file at the end (about 600 Kb). May be I miss something, but I can't deal with this problem yet. I will try IText lib.
I have clients that already have their invoices in Word (docx) and wants to generate PDF, does this library allows me to export to PDF or at least import the current content from Word?
not familiar with code, but i'm interested in this. Is there a way where it can select from random images in specified folders, size them to your specific requirements, spacing, etc. then repeat that a specific number of times to create a single pdf file with dozens of pages? for example, i'm trying to generate booster packs for a tcg, so I need specific number of different card rarities selected and then repeated like 24 times for 24 packs in a single pdf so that paper doesn't get wasted, it just fills in the spaces of a 3x3 grid on each page
This looks like a great tool for doing what it’s made to do! The visualizer is cool The only nock I have on this is that it doesn’t have a way to handle variable-length content. You seemingly *have* to know how much fits on a page ahead of time, but in some cases that’s impossible
By looking at the invoice example that has been done here: ruclips.net/video/-iYvZvpLX0g/видео.html it looks like the content will auto-wrap to another line if it won't fit. Not sure what's going to happen if you make width 1px for something like product description ;)
@@elpe21 I should have been more specific. It’s good that lines will auto-wrap to the next line; what I mean is if there is no more space for lines on the page but there is more content, I would presume since you have to explicitly create pages that it won’t wrap to a new page. If you took the lorem ipsum from this video and used it.. say.. 20 times instead of once. It won’t fit on the page unless you make the font so small you can’t read it
i am just curious what is this workflow ? and how do i start c# .NET project like that and can i build a UI for it. i am used to working with visual studio and Windows Form Application projects, but this seems a lot cleaner and straight forward
Looks like previewer doesn't work with latest version? I have a .NET 8 app and installed 2023.12.4, then tried Previewer 2023.12.2, not compatible with .NET 8 error
Is this works while we publish our apps to Linux server? Most of the time image generation libraries doesn't work cause they uses windows apis for that.
The best feature is, that it is c# where you can use loops, classes write extensions and allfthat. Passing your models and everything as you know it. Its genious.
I am using a puppeteersharp to render HTML to image but it is slow because it needs to create a new instance of the browser take a screenshot and close it. Do you guys know how can I improve the speed? I am talking about tens and maybe hundreds of requests per second.
can someone help me? when i wanna try. i got this error, how to solve this one? Severity Code Description Project File Line Suppression State Error CS8370 Feature 'top-level statements' is not available in C# 7.3. Please use language version 9.0 or greater. thanks
I use syncfusion, you can also convert word files to pdf, a few of my customers want to do their own layout, you can then merge data from the word template to a pdf. Doesn't mean it is the best library though but hey i am happy with it.
We use an xsl-fo library for this, but it's really expensive. Not sure if we would get the same functionality here. Wondering if Quest has block containers, blocks and spans. If so then it might be worth a switch, if the speed was on par with the xslt transformation.
Having a visual "report editor" makes me a lot more productive. I don't need to waste time working out HOW I put stuff down, I just create it. I guess that I prefer my productivity over knowing the guts of a system, especially when I need to do so many different jobs. NOTE: I am NOT saying that there is anything wrong with this approach. This probably works well for the vast majority of people, and I CAN see where it would. It is just not something that makes me more productive, and at the end of the day, my time is more valuable.
the eay i struggled with jspdf html2pdf the documentation is rubished but questpdf if so coool that you enerate it from back end who knows with blazor it might as well be possible to generate it thanks for this @Nick
Easiest way to build a PDF is to write a HTML page and use iText to convert it..however some special operations may be lacking. But for 90% of the use cases I think this is the most friction-free approach.
What would be a great library for parsing PDF with a similar licensing model? I've used PdfPig in a commercial project, but it was a bit of a pain to make it work, when the PDFs are structured in a slightly different way.
building a github watching bot for my team and it might be nice to output these summaries to pdf thank you Nick! :) Oh seems like a factory pattern might be nice with this one.
We use Devexpress Reports, and build reports, then whenever a user needs a PDF, Excel, word document of whatever is on the screen they have to manually click options to generate files, in my use case reports are the way to go, but when code close source, and only shared with development team, then i think report are the wasy to go, but the moment code is shared in whole team(developers, EDPs, reports & tests and all) then I think you need code based PDF just like quest PDF
Did a lot using PDFSharp to make election maps a while back. This would have been so much better than the way I had to do it back then! Obviously was not available back then.
Using MigraDoc, and not much code needed to create a previewer there also. Tried some of the HTML to PDF libraries, and they often are full of issues. Either performance (with resource leaks etc.), or just broken formatting (tables rendered outside of the "paper" etc.).
Quest is good, but you cannot use it for mobile apps (MAUI). I know, I know, "call a web api from your app" mantra is always recommended, but wouldn't it be great if you could create a PDF from a mobile device with .Net (easily) ?
The real time viewer is a gamechanger. that amount of time I spend rebuilding, checking only to find that the pdf is out by a few pixels. Amazing!
Nick, I get the impression you're reading my mind. Every month you come up at least with one topic that's currently on my learning list. Thank you so much, and keep up reading our minds :)
I am also under this impression, or we are all sharing the same hive mind 😂
Definitely hive mind 😅
It's because he is working on some projects like we all do in our side-hustle and we all face similar challenges
Me too. I was thinking about this topic today for my future hobby project and all of sudden he has made a video on this which is no where related to videos he made recently. I can't believe it.
Awesome to see you create a video on this. I've been using this for the last few months for a client. There are still some rough spots, but it has been amazing for creating Pdf's. If you're doing mostly simple things, this will be perfect for you. As you get to some of the complex stuff, specially if it requires measurements due to needing to wrap contests or show them in a non supported layout or ordering type, it can be a bit touch and go to get what you want.
Overall highly recommend this library.
Nick ,junior developer here - you along with Fireship are the 2 reasons I'm working as a developer today, you guys are clear ,fast paced and great teachers! Keep it up man.
I used this library one of my project and it is really good library and working very stable.
my current approach is to use puppeteer sharp to convert an html page using chromium. the html page is generated by a blazor page / component, this way i can visit the page to see how it displays, also making it user accessible for preview. The downside of this is that puppeteer is very heavy and it is a little complicated (but possible) to write cross platform code due to the native part of the process. QuestPDF looks very interesting!
This is the way. It's way simpler and more powerful to generate a pdf using html than any other medium I've found.
This looks amazingly easy and straightforward, as it should be! Amazing. Thanks for the video.
really cool seeing u support the packages you show to your audience
Agreed the sheer class is 👏👏👏
We've been developing with Quest for a while. Really useful, great for a large number of use cases and a gentle learning curve. Highly recommend for small to mid-tier projects (and maybe beyond)
The biggest job for me is generating pdfs from templates. The goal is to generate as fast as possible. On the templates there are fields that have to have different values for each pdf file. The fastest I've achieved so far was the Aspose package, generating from MS WORD templates, for the simpler templates I could achieve 1000 pdf/sec.
What my team is currently using is Gotenburg to give html styling together with Scriban to script the different values to generate our pdfs from templates we create ourselves. Has a bit of a learning curve but afterwards it is very easy to use as very fast to generate the pdfs
We are using wkhtmltopdf. As the name implies you can use a html template and replace some variables in there with your wished content. Easy styling, easy layout but I did not check the speed of it.
This is a pretty impressive library, it took me just half a day to recreate a few documents at my work, way less painful than anything else I've used to generate report documents.
This is amazing! That hot reload would've saved me sooo much time years ago when I last had to generate PDFs for a work project, if only it had been around back in the mid 2000s! 😅
How this is possible 😮. I was thinking about this topic today and all of sudden you have made a video on this which is no where related to videos you have made recently. It's a miracle ✨ 💯
Me: Trying to convince my multi-million dollar a year client to pay $500/year for the commercial license
Client: Can’t we just build our own from scratch?
This video is a game changer for me. I finnaly will get rid of Crystal Report and his bad backwards compatibility. Thanks!!
wow this is an amazing dev experience for something that has always been way too complicated that is used in so many different use cases. Thanks for sharing! adding this to my tool box!!!!.
I remember when this library first came out. So happy to see it featured in a Nick Chapsas video
I actually used this library about a year ago to generate mini prints of QR codes and additional information in a two column design and then cut automatically after print. One of the most convenient PDF generation tools I've used and have sent support. The only issue I had with it was generating large PDFs in megabytes because a font set gets embedded with it. At the time I used it, the only fix was embedding a stripped down font set so you can generate PDFs that are kilobytes in size. Otherwise, an amazing library!
I'm a new programmer and haven't been able to manage to create a pdf that will cut automatically. Do you perhaps have any tips on how to do this?
The preview option is amazing, a productivity booster; it eliminates lots of tedious work.
It would be nice in your next video to show how to sign this PDF, as it is something that is becoming a requirement in more and more businesses. Very good video. Keep it up.
Great video! There’re also libraries which build PDF based on HTML page. This could be convenient for backend developers with basic frontend knowledge. With HTML template you can gain same preview experience with well-known CSS styling on board
Few examples please 🙏
@@RenjithRs123 I use puppeteersharp in my project, basically it runs a chrome browserless in the background and use the "print" feature of the browser to create the pdf. I can generate some very complex templates and pdf's.
@@guilhermeflores7564can i ise it in production? Like on aws on my server do i need to install chrome ? Or every thing is included in nuger package ?
Really awsome Library!
I am using it for some time now and you can fulfill all most common Use Cases with it
I've been using SelectPDF for years now. It's not as simple as this but it can take an entire html page with css included and create a PDF from that. It's enough for what I'm doing right now but I might give this a try at a later time.
This is just amazing. Definitely have to keep this in mind in the future. Thanks for sharing!
1 of the best pdf library i have seen for creating pdf
to Generate Pdf's i've using the razorlight lib with wkhtmltoPdf lib, i get the cshtml razor, and trasform in string html to pass as content on wkthml pdf content prop and works well
Seems I as much excited as Nick about this library :) And the pricing model is also REALLY attractive
Nice - being playing with Quest - good hints and information - wonderful.
Thanks for sharing!!! It would be nice to see a demo with variables instead of writing strings, just an idea!
Great library! Used it in recent project for (not maybe ideal use case, but still it was best option) to generate photobooks with custom layouts. Works like a charm.
This may finally be the thing I needed to rewrite my pdf manipulation tool. 🤩
Thanks for that very useful package, @Nick Chapsas! Here, I'd like to ask for some .Net solutions but for populating with data of already-defined PDF template files.
This is so cool! Thanks you shared this one! Definitely I'll use it! Many thanks!
You gave me hope, and then you killed it when you started talking about a commercial license
LOL i just found QuestPDF 2 weeks ago. Love how easy it makes woking with PDF.
I wasn't expecting this topic but it's amazing 😆
ABCpdf is what the organization I'm affiliated with uses. The API is akin to something from the 1990s. When .NET Core arrived and we inquired when they would support it, their answer was "Why would we do that. You can just use .NET Framework". Eventually they came around on that one, but not until after using having to segment off special services written in legacy frameworks to support functionality.
I came from the same sort of background. I just finished rebuilding our generator from ABCpdf to QuestPdf, and the speed upgrade were so enormous that we didn't even bother to measure it, at the very least 20x faster, might even be 50x.
The biggest problem was that I had to make it 100% backwards compatible, which caused some issues, as we had support for HTML in the ABCpdf library, which QuestPdf doesn't.
QuestPDF is awesome! Thanks for sharing, Nick!
Is there a way to load another PDF as a template then place text over the top?
I use QuestPDF and like it. I love seeing the previewer in action. I knew about it, but didn't know it was that easy to use. The issues I've run into with QuestPDF are situations when content overflows in some way. In a large data-driven pdf, I've found it hard to track down exactly where the failure is. I ended up creating an integration test that does several iterations of my pdf, and I have logic for retrying with smaller data sets to isolate issues. I would rather not have to go to lengths like that, but it's still a good library.
I haven't worked with it, but I definitely like it)
Thank you so much.
Awesome exactly what i was looking for thank you much Nick Chapas. I have tried so many options but i couldn't get anything close to it with community license
Does anyone have an idea how to add a latex generated formula to a PDF?
Do I first have to convert it to an image and then as a stream to PDF?
That looks amazing, thanks for showing!
Thanks for creating this video, we want more video on PDF read, manipulate and re-generate, upload, download and merge pages and split, rotate PDFs. Please.
We are using stimulsoft for so ling now and the experience was perfect
Thank you so much for sharing this amazing library.
Great video Nick
Is it possible that Milan Javanovic always publish some video similar to Nick couple days/weeks later 😂
Great library. I use IText. But I think I am going to play with quest. Seems much easier. Plus the previewer is spectacular.
Looks like a very healthy alternative to telerik reporting which we use at work these days. Although we would lose support for exporting the reports we create to microsoft office formats.
The library is great indeed, but I met one drawback of this lib. It's size of generated file. I need special characters in my document and to do that, I had to use Fallback of another font. Additional fonts may contain thousands of glyphs and all of them are used in generating document, when i need onlyy two of them. Therefore my generated document with 4 pages has size about 6 Mb, this is too much. I tried to use another font without fallbacks, and that helped for sure, but still too large file at the end (about 600 Kb). May be I miss something, but I can't deal with this problem yet. I will try IText lib.
Very nice, but are the PDF WCAG complient?
I have clients that already have their invoices in Word (docx) and wants to generate PDF, does this library allows me to export to PDF or at least import the current content from Word?
not familiar with code, but i'm interested in this.
Is there a way where it can select from random images in specified folders, size them to your specific requirements, spacing, etc. then repeat that a specific number of times to create a single pdf file with dozens of pages?
for example, i'm trying to generate booster packs for a tcg, so I need specific number of different card rarities selected and then repeated like 24 times for 24 packs in a single pdf so that paper doesn't get wasted, it just fills in the spaces of a 3x3 grid on each page
Very cool, I've been wondering about this for a while
This looks like a great tool for doing what it’s made to do! The visualizer is cool
The only nock I have on this is that it doesn’t have a way to handle variable-length content. You seemingly *have* to know how much fits on a page ahead of time, but in some cases that’s impossible
By looking at the invoice example that has been done here: ruclips.net/video/-iYvZvpLX0g/видео.html it looks like the content will auto-wrap to another line if it won't fit. Not sure what's going to happen if you make width 1px for something like product description ;)
@@elpe21 I should have been more specific. It’s good that lines will auto-wrap to the next line; what I mean is if there is no more space for lines on the page but there is more content, I would presume since you have to explicitly create pages that it won’t wrap to a new page.
If you took the lorem ipsum from this video and used it.. say.. 20 times instead of once. It won’t fit on the page unless you make the font so small you can’t read it
@@the-avid-engineer by looking at the example from the video i've posted it will take the lorem to next page(s) . Check the viedo I gave, time 34:06
@@elpe21 well thats just freaking awesome
Would like to see how it deals with page overflow and whether you can break up paragraphs or keep paragraphs together
I wonder if there is a way to make a pdf file(from msword or latex or publisher for example) and edit only the dynamic parts on the fly!
i am just curious what is this workflow ? and how do i start c# .NET project like that and can i build a UI for it.
i am used to working with visual studio and Windows Form Application projects, but this seems a lot cleaner and straight forward
Thanks! Exactly what I needed
how can I create an endpoint for to make a download the pdf? I can create the layout, but I can't to create an endpoint in my web API
Looks like previewer doesn't work with latest version? I have a .NET 8 app and installed 2023.12.4, then tried Previewer 2023.12.2, not compatible with .NET 8 error
Super cool - I will check it out for my next project 😍😍
Is this works while we publish our apps to Linux server? Most of the time image generation libraries doesn't work cause they uses windows apis for that.
How would library fair while trying to generate a pdf from an AWS Lambda and store it onto a s3 bucket?
Looks interesting but how does something like this compare to using the report viewer control and RDLC documents?
I create a view, then fill it with it's model, then get it's html and pass it to puppeteer to return a pdf.
Do you mind sharing some code? I like that approach, but my PDF ended up being much larger compared to the same file generated using wkhtmltopdf.
Looks great. I would have been happy to see how to generate grids. Because for my use cases, it is one of the most difficult things to achieve.
The best feature is, that it is c# where you can use loops, classes write extensions and allfthat. Passing your models and everything as you know it. Its genious.
I am using a puppeteersharp to render HTML to image but it is slow because it needs to create a new instance of the browser take a screenshot and close it. Do you guys know how can I improve the speed? I am talking about tens and maybe hundreds of requests per second.
nick would love to see some vids with open apis and gpt..or maybe you can suggest how devs can make some good product with them.
can someone help me? when i wanna try. i got this error, how to solve this one?
Severity Code Description Project File Line Suppression State Error CS8370 Feature 'top-level statements' is not available in C# 7.3. Please use language version 9.0 or greater.
thanks
I use syncfusion, you can also convert word files to pdf, a few of my customers want to do their own layout, you can then merge data from the word template to a pdf. Doesn't mean it is the best library though but hey i am happy with it.
do you pay for it?
We use an xsl-fo library for this, but it's really expensive. Not sure if we would get the same functionality here. Wondering if Quest has block containers, blocks and spans. If so then it might be worth a switch, if the speed was on par with the xslt transformation.
What's your take on IronPdf ? Is this supported in Linux containers ?
Exist a Report Builder/Manager opensource that works with mysql and c#?
I'll check it out, looks promising. My challenge is with headings/references/hyperlinks and a TOC, I hope they have good support for that
thank you so much that was so helpful!
Based Nick sponsoring open source projects
Need an html pdf generater could you suggest best lib for it?
I love that library, and I am lobbying for my employer to start paying for it so I can get latest and greatest features
Having a visual "report editor" makes me a lot more productive.
I don't need to waste time working out HOW I put stuff down, I just create it.
I guess that I prefer my productivity over knowing the guts of a system, especially when I need to do so many different jobs.
NOTE: I am NOT saying that there is anything wrong with this approach.
This probably works well for the vast majority of people, and I CAN see where it would.
It is just not something that makes me more productive, and at the end of the day, my time is more valuable.
PDFFlow works very similar to that and has almost the same syntax. Testing it out is slightly more cumberstone tho
the eay i struggled with jspdf html2pdf the documentation is rubished but questpdf if so coool that you enerate it from back end who knows with blazor it might as well be possible to generate it thanks for this @Nick
Easiest way to build a PDF is to write a HTML page and use iText to convert it..however some special operations may be lacking. But for 90% of the use cases I think this is the most friction-free approach.
What would be a great library for parsing PDF with a similar licensing model? I've used PdfPig in a commercial project, but it was a bit of a pain to make it work, when the PDFs are structured in a slightly different way.
What about reports in your application. Do you use a PDF library most of the time, use Crystal Reports, or code it yourself?
When I try to run the previewer, AVG blocks a virus threat as IDP.Generic.
Hello Nick!
Idea for next video - Benchamrks: Json vs ProtoBuff vs Cap'n Proto vs MessagePack vs ...
can i also merge / split pdf documents with that library?
Wow I've wanted this video for years including a project I just started. Why is this so hard?
building a github watching bot for my team and it might be nice to output these summaries to pdf thank you Nick! :) Oh seems like a factory pattern might be nice with this one.
We use Devexpress Reports, and build reports, then whenever a user needs a PDF, Excel, word document of whatever is on the screen they have to manually click options to generate files, in my use case reports are the way to go, but when code close source, and only shared with development team, then i think report are the wasy to go, but the moment code is shared in whole team(developers, EDPs, reports & tests and all) then I think you need code based PDF just like quest PDF
Writing markup in code looks fun. I usually write my markup in markup.
can I add a border Radius to Container some how ?
Did a lot using PDFSharp to make election maps a while back. This would have been so much better than the way I had to do it back then! Obviously was not available back then.
I've heard many similar libraries have a problem with memory leaks. has anyone had such a problem on this library
amazing video thanks
Using MigraDoc, and not much code needed to create a previewer there also. Tried some of the HTML to PDF libraries, and they often are full of issues. Either performance (with resource leaks etc.), or just broken formatting (tables rendered outside of the "paper" etc.).
Quest is good, but you cannot use it for mobile apps (MAUI). I know, I know, "call a web api from your app" mantra is always recommended, but wouldn't it be great if you could create a PDF from a mobile device with .Net (easily) ?