lkml.org 
[lkml]   [2021]   [Dec]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 0/3] docs: sphinx/kfigure.py: Improve conversion to PDF
Em Sun, 12 Dec 2021 20:57:23 +0900
Akira Yokosawa <akiyks@gmail.com> escreveu:

> On Sun, 12 Dec 2021 11:38:13 +0100, Mauro Carvalho Chehab wrote:
>
> Hi Mauro,
>
> I didn't expect such a quick response.
> Thank you so much!
>
> > Em Sun, 12 Dec 2021 16:59:53 +0900
> > Akira Yokosawa <akiyks@gmail.com> escreveu:
> >
> >> This patch set improves conversions of DOT -> PDF and SVG -> PDF
> >> for PDF docs.
> >>
> >> * DOT -> PDF conversion
> >
> > First of all, package requirement for docs generation should be auto
> > discovered by:
> >
> > scripts/sphinx-pre-install
>
> Please note that this update does not change any requirement.

Ok.

> I think you are worried by the possible degradation of DOT rendering
> without rsvg-convert. Please see comments below.
>
> >
> > and should not break the ones detected by check_distros() and that
> > supports PDF generation.
> >
> >>
> >> Current scheme uses "dot -Tpdf" (of graphviz).
> >>
> >> Cons:
> >> - openSUSE's dot(1) does not support -Tpdf.
> >
> > I'm sure I tested pdf generation in the past with openSUSE by the
> > time I wrote sphinx-pre-install script. Perhaps some change at either
> > openSUSE or at the docs makefile broke support for it.
>
> dot -T? on openSUSE Tumbleweed says (long line folded):
>
> Format: "?" not recognized. Use one of: canon cmap cmapx cmapx_np dot dot
> _json eps fig gd gd2 gif gv imap imap_np ismap jpe jpeg jpg json json0 mp
> pic plain plain-ext png pov ps ps2 svg svgz tk vml vmlz vrml wbmp xdot
> xdot1.2 xdot1.4 xdot_json
>
> There is no "pdf" here.

Tumbleweed is a rolling distribution. Something could have changed since
when I added support for it. Anyway, the script could check the output of
it to enable/disable pdf via dot (not saying it is worth or not).

> >
> >> - Other distro's dot(1) generates PDFs with unnecessarily wide
> >> margins for inclusion into LaTeX docs.
> >>
> >> Patch 1/3 changes the route to two steps:
> >>
> >> 1. DOT -> SVG by "dot -Tsvg"
> >> 2. SVG -> PDF by "rsvg-convert -f pdf" with fallback to convert(1).
> >
> > rsvg-convert is not present on Fedora (nor on RHEL and CentOS), as far
> > as I'm aware.
>
> It is provided in the "librsvg2-tools" package, which is suggested by
> sphinx_pre_install.
> So once you have it installed on Fedora/RHEL/CentOS, this change won't
> cause any regression.
>
> Don't you agree?

Yeah, I missed that. Thanks for reminding me about that ;-)

> >
> >> Pros:
> >> - Improved portability across distros
> >> - Less space for graphs in final PDF documents
> >>
> >> Con:
> >> - On systems without rsvg-convert, generated PDF will be of raster
> >> image.
> >
> > Raster images are a very bad idea. Why don't keep use "dot -Tpdf" when
> > supported by the system? instead of falling back to raster images?
>
> I suppose I am able to do so. I just thought installing rsvg-convert
> wouldn't be that difficult.
> I can add a patch in v2 if you insist that is necessary.
>
> >
> >> * SVG -> PDF conversion
> >>
> >> Current scheme uses convert(1) (of ImageMagick)
> >>
> >> Cons:
> >> - Generated PDFs are of raster image. Some of them look blurry.
> >> - Raster image tends to be large in size.
> >> - convert(1) delegates SVG decoding to rsvg-convert(1).
> >> It doesn't cover full range of Inkscape specific SVG features
> >> and fails to convert some of SVG figures properly.
> >>
> >> Failed conversions are observed with:
> >> - Documentation/userspace-api/media/v4l/selection.svg
> >> - Documentation/userspace-api/media/v4l/vbi_525.svg
> >> - Documentation/userspace-api/media/v4l/vbi_625.svg
> >
> > What do you mean by failed? With the current way, the VBI ones
> > seem OK to me:
> >
> > https://linuxtv.org/downloads/v4l-dvb-apis-new/pdf/media.pdf
>
> By "fail", I meant "fail to render properly.
>
> selection.svg is rendered on page 810 in your PDF.
> I think the mask strap is lost in the figure.
> Well, selection.svg has Inkscape specific elements for the strap.
> So it is not rendered in a browser, either.

Ok, so we should fix selection.svg to address such issues. The same applies
to other images and graphs. That may include properly setting the margins.

> If you open it in Inkscape, I think you will see the difference.
> Actually speaking, I have edited selection.svg so that it can
> be rendered in a browser. My plan is to send it as an independent
> patch once this patch set is accepted.

No matter if this is merged or not, if you find an issue at the images
at the media docs, please send them to linux-media@vger.org.

>
> Figures 10, 11, and 12 on pages 1031 and 1032 don't look good
> either. Do you see what I mean?
>
> >
> > (This is daily updated. On today's build the raw VBI ones are in
> > page 1031/1032)
> >
> > Do you mean that your changes caused a regression there?
>
> Of course not!
>
> >
> >> If you have Inkscape installed as well, convert(1) delegates SVG
> >> decoding to inkscape(1) and the above SVGs are rendered correctly.
> >>
> >> So if Inkscape is required for converting those SVGs, why not use it
> >> directly in the first place?
> >
> > I remember that the main focus were to be able to generate PDF at the
> > major distros. It should be OK to use whatever tool, provided that it
> > won't cause regressions with such distros. Not that is should matter
> > much for the others, but my particular interest is that it shouldn't
> > cause regressions neither on Debian nor on Fedora, as those are the
> > ones I use for PDF generation. Debian is used at linuxtv.org, where we
> > do automate builds for PDF, ePUB and HTML. Fedora is what I used locally,
> > in order to test and fix issues on media PDF document output.
>
> I have tested this change on Debian and Fedora systems as well as
> openSUSE, Arch, and other distros.
> I'd say it works flawlessly.
>
> I'd appreciate if you could give a try on your systems.

I'll try to run some tests today.

> Thanks for your feedback.
> I am willing to improve the quality of the PDF docs further.
>
> Thanks, Akira
>
> >
> >> Patch 2/3 adds a route of SVG -> PDF conversion by inkscape(1).
> >> Patch 3/3 hides warning messages from inkscape(1) which are harmless
> >> in command-line uses.
> >>
> >> Pros:
> >> - Generated PDFs are of vector graphics.
> >> - Vector graphics tends to be smaller in size and keeps looking nice
> >> while zoomed in.
> >> - SVGs drawn by Inkscape are fully supported.
> >>
> >> On systems without Inkscape, there won't be any change in behavior.
> >>
> >> Thanks, Akira
> >> --
> >> Akira Yokosawa (3):
> >> docs: sphinx/kfigure.py: Use rsvg-convert(1) for DOT -> PDF conversion
> >> docs: sphinx/kfigure.py: Use inkscape(1) for SVG -> PDF conversion


> >> docs: sphinx/kfigure.py: Redirect warnings from inkscape to /dev/null

It sounds too risky to redirect stderr to /dev/null. Yeah, here, the output
of inkscape is too crowd of warnings. Hacking it with a
SPHINX_SHOW_INKSCAPE_WARN variable also seems a bad idea.

Not sure how this could be solved.

Thanks,
Mauro

\
 
 \ /
  Last update: 2021-12-13 07:34    [W:0.120 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site