Re: PDF generation in D?

2016-11-22 Thread o3o via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Try http://code.dlang.org/packages/harud, a D binding to libharu.

Re: PDF generation in D?

2016-11-22 Thread Vasudev Ram via Digitalmars-d
On Tuesday, 22 November 2016 at 18:49:51 UTC, Vasudev Ram wrote: - check out libharu - it is an open source C library for PDF P.S. I just saw here: http://code.dlang.org/packages/fpdf that they say "If you don't need to be able to import PDFs, you may want to check out harud" - which by

Re: PDF generation in D?

2016-11-22 Thread Vasudev Ram via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Hi, I did read all the replies posted up to now. Posting a few alternative

Re: PDF generation in D?

2016-11-16 Thread Adrian Matoga via Digitalmars-d
On Wednesday, 16 November 2016 at 01:22:33 UTC, Jot wrote: What's your point? My point is that PS as a textual format can be easily generated without external libraries or tools, and then converted to an identically looking PDF.

Re: PDF generation in D?

2016-11-15 Thread Jot via Digitalmars-d
On Tuesday, 15 November 2016 at 15:23:29 UTC, Adrian Matoga wrote: On Tuesday, 15 November 2016 at 11:13:54 UTC, Jot wrote: On Tuesday, 15 November 2016 at 09:39:09 UTC, Adrian Matoga wrote: On Friday, 11 November 2016 at 09:47:21 UTC, Robert burner Schadek wrote: I used text files and LaTeX

Re: PDF generation in D?

2016-11-15 Thread lobo via Digitalmars-d
On Tuesday, 15 November 2016 at 15:23:29 UTC, Adrian Matoga wrote: On Tuesday, 15 November 2016 at 11:13:54 UTC, Jot wrote: On Tuesday, 15 November 2016 at 09:39:09 UTC, Adrian Matoga wrote: On Friday, 11 November 2016 at 09:47:21 UTC, Robert burner Schadek wrote: I used text files and LaTeX

Re: PDF generation in D?

2016-11-15 Thread Adrian Matoga via Digitalmars-d
On Tuesday, 15 November 2016 at 11:13:54 UTC, Jot wrote: On Tuesday, 15 November 2016 at 09:39:09 UTC, Adrian Matoga wrote: On Friday, 11 November 2016 at 09:47:21 UTC, Robert burner Schadek wrote: I used text files and LaTeX in the past, it works with everything textfile -> process -> LaTeX

Re: PDF generation in D?

2016-11-15 Thread Jot via Digitalmars-d
On Tuesday, 15 November 2016 at 09:39:09 UTC, Adrian Matoga wrote: On Friday, 11 November 2016 at 09:47:21 UTC, Robert burner Schadek wrote: I used text files and LaTeX in the past, it works with everything textfile -> process -> LaTeX -> pdf This. Another (a bit lower-level) option would

Re: PDF generation in D?

2016-11-15 Thread Adrian Matoga via Digitalmars-d
On Friday, 11 November 2016 at 09:47:21 UTC, Robert burner Schadek wrote: I used text files and LaTeX in the past, it works with everything textfile -> process -> LaTeX -> pdf This. Another (a bit lower-level) option would be to produce a PostScript file and pass it to (e)ps2pdf.

Re: PDF generation in D?

2016-11-13 Thread Bauss via Digitalmars-d
On Thursday, 10 November 2016 at 23:42:46 UTC, Daniel Kozak wrote: Dne 10.11.2016 v 23:30 Karabuta via Digitalmars-d napsal(a): Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) It depends what

Re: PDF generation in D?

2016-11-11 Thread Karabuta via Digitalmars-d
On Friday, 11 November 2016 at 09:10:38 UTC, Edwin van Leeuwen wrote: On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Thanks

Re: PDF generation in D?

2016-11-11 Thread Robert burner Schadek via Digitalmars-d
I used text files and LaTeX in the past, it works with everything textfile -> process -> LaTeX -> pdf

Re: PDF generation in D?

2016-11-11 Thread Edwin van Leeuwen via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Personally I would generate markdown and use a command line tool (pandoc

Re: PDF generation in D?

2016-11-11 Thread Ali Çehreli via Digitalmars-d
On 11/10/2016 02:30 PM, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Last time I checked, there was nothing even close to the quality of Prince XML when it comes to print

Re: PDF generation in D?

2016-11-11 Thread qznc via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) You can pull in Gtk with Cairo and Pango. Cairo can generate pdf. Pango

Re: PDF generation in D?

2016-11-10 Thread Daniel Kozak via Digitalmars-d
Dne 10.11.2016 v 23:30 Karabuta via Digitalmars-d napsal(a): Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) It depends what you need, for eg. we are using wkhtmltopdf with no problem. We

Re: PDF generation in D?

2016-11-10 Thread Guillaume Piolat via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) AFAIK the only one existing is http://code.dlang.org/packages/fpdf

PDF generation in D?

2016-11-10 Thread Karabuta via Digitalmars-d
Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :)