Page 1 of 1

image convert

Posted: Wed Aug 10, 2016 9:00 am
by skylin008
How to covert the Group 3 fax file to tiff file in MicroPython!TKS!

Re: image convert

Posted: Wed Aug 10, 2016 12:52 pm
by pythoncoder
I'd start by googling for solutions in Python3. You'd then need to study the code to check each imported library: many graphics converters pull in huge libraries which would be too big to port to microcontroller hardware running MicroPython. I doubt you'll find this done for you; I'm unaware of anyone having used it for that kind of image conversion.

So you'll probably need to look at stripping down and porting the code yourself. The main task is likely to be removing unnecessary code to make it fit. You could do much of the work on a PC using Python3 or the Unix build of MicroPython before moving your code to the target platform.