IgorTimofeev / MineOS

Home of MineOS and it's software for OpenComputers mod
Other
733 stars 191 forks source link

Converting .PIC to .PNG or comparable filetype #597

Closed cadergator10 closed 3 months ago

cadergator10 commented 3 months ago

Hello, so I for the life of me couldn't find any way online to convert the .PIC file type to another one that is compatable with a web browser. Is there anything known that is capable of doing this, preferably using C# but anything really works?

Smok1e commented 3 months ago

There is no converters at the moment, but the format is very simple. You can use sources from this repo, which can load OCIF (.pic) images and export them to png and implement your own converter

CoolCat467 commented 3 months ago

I have one I wrote in Python that you could likely adapt this script I made a while ago, very similar idea, but I think Smok1e's version might be closer to C# and work more efficiently.

cadergator10 commented 3 months ago

Thank yall! This'll help an absolute ton!