Rémi Bèges
Rémi Bèges
Thanks for the feedback, indeed you're right I meant newlines not carriage returns. That's interesting because I was not getting the newlines at all, I was getting this: ``` print(textract.process('Test...
That's quite weird, I can reproduce the issue: ``` text_A = textract.process(r'C:\Users\Remi\Downloads\Test document 2.docx') text_B = textract.process(r'C:\Users\Remi\Downloads\Test document 2.pdf') print(text_A) print(text_B) ``` ``` b'Test document\n\n\n\nThis document is for testing.\n\n\n\nCheers' b'Test...
I don’t think I ever did, I switched to another packaging tool in the end but it’s pretty old can’t remember which one.
Hi @almarklein, it looks like it's not a matter of channels but datatype in fact. The image i'm trying to load is a F32 EXR. All F16 EXR read/write just...
Ok thanks, I will try that ASAP Would there be a point to add those flags to imageio, to make it easier for users ?
So the code for `EXR_FLOAT` is 0x0001. I have generated an EXR F32 image with the following code: ``` import imageio import numpy as np img = np.random.uniform(0, 1, (32,...
I just had a look at the metadata (at last :) ), there is nothing in it, it is an empty dict. I am currently tracking down the software that...
Here is an image that causes the issue: [displace_v.zip](https://github.com/imageio/imageio/files/2336240/displace_v.zip) The problem comes from EXR images produced by ZBrush. They are single channel with `L 32` pixel. I am going to...
Yes that's correct. The ticket on Freeimage issue tracker is here : https://sourceforge.net/p/freeimage/bugs/283/ (no replies yet) There is also [openexrpython](https://github.com/jamesbowman/openexrpython) but this wrapper requires the openexr library to be installed...
Let's hope :P Otherwise, how difficult would it be to integrate openexrpython into imageio ? Given that you have already implemented a pretty robust mechanism for fetching binaries of image...