image convert

C programming, build, interpreter/VM.
Target audience: MicroPython Developers.
Post Reply
skylin008
Posts: 88
Joined: Wed Mar 11, 2015 6:21 am

image convert

Post by skylin008 » Wed Aug 10, 2016 9:00 am

How to covert the Group 3 fax file to tiff file in MicroPython!TKS!

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: image convert

Post by pythoncoder » Wed Aug 10, 2016 12:52 pm

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.
Peter Hinch
Index to my micropython libraries.

Post Reply