jamarshon

Results 2 comments of jamarshon

https://github.com/Belval/pdf2image/blob/e0bf64d6ebaf9b4545379679c7f911d1917ad9e7/pdf2image/pdf2image.py#L471 I believe it is an issue with this line. If I run with ```paths_only```, there is no issue ```python with tempfile.TemporaryDirectory() as path: images_from_path = convert_from_path(data_path, output_folder=path, paths_only=True) ```...

Maybe this code snippet would work. I tried this locally and this version does not have the error. ```python import tempfile with tempfile.TemporaryDirectory() as path: images_from_path = convert_from_path('/home/belval/example.pdf', output_folder=path) #...