Convert selected PDFs or every PDF in the current folder into PNG images, one image per page.
pdfToimg(source=None)sourceType: path, iterable of paths, or None
Optional PDF input. If omitted, all PDFs in the current working folder are discovered.
A list of `Path` objects for all generated PNG pages, or `None` when no PDFs are found.
pdfToimg()pdfToimg("report.pdf")pdfToimg(pdfMerge())Output is organized as `converted images/<pdf stem>/<pdf stem>_page_N.png`.
When source is omitted, Toolvix discovers matching files in the current working folder. When source is supplied, only the supplied files are processed. This makes nested pipelines deterministic.