NEW il y a 5 ans
It's for that that the convert tools is very usefull. It's make life easier ;) but i let Steph ending respond as he make it very fine ;)
Codnpix
il y a 5 ans
It's for that that the convert tools is very usefull. It's make life easier ;) but i let Steph ending respond as he make it very fine ;)
Yes but the converter doesn't make any relation with a palette index, or does it ?
Omg, yes it does, I think I'm starting to understand while I'm typing my questions ^^
NEW il y a 5 ans
It's for that that the convert tools is very usefull. It's make life easier ;) but i let Steph ending respond as he make it very fine ;)
Yes but the converter doesn't make any relation with a palette index, or does it ?
Omg, yes it does, I think I'm starting to understand while I'm typing my questions ^^
NEW il y a 5 ans
Yes! That's exactly what it is :-)
Indeed, the process is laborious... so it is better to code a tool by yourself that does the job for you!
Unfortunately png-to-code is completely buggy and does not work at all for indexed images... and it does not return the linked palette... In addition, the transparent color is neither configurable nor correctly returned in the result array for RGB565 images...
When I have some time, I'll code one so it's available online... but I have so much to finish before...
Codnpix
il y a 5 ans
Indeed, the process is laborious... so it is better to code a tool by yourself that does the job for you!
Okay ! Let's go to work then ^^... I'm going to try to do that, for myself at first and online if I get something good. Actually as part of my current web development training, I'm going to spend 3 month as a trainee with the Gamebuino team in St Etienne ! So maybe the development and improvement of that kinf of tool will be a part of my work (I actually think it precisely will, I just have to get technically able to do it ! Not a won in advance fight but I'm going to work on it..:) ).
Anyway, thank you for your help guys, I know where I'm going now :).
NEW il y a 5 ans
Indeed, the process is laborious... so it is better to code a tool by yourself that does the job for you!
Okay ! Let's go to work then ^^... I'm going to try to do that, for myself at first and online if I get something good. Actually as part of my current web development training, I'm going to spend 3 month as a trainee with the Gamebuino team in St Etienne ! So maybe the development and improvement of that kinf of tool will be a part of my work (I actually think it precisely will, I just have to get technically able to do it ! Not a won in advance fight but I'm going to work on it..:) ).
Anyway, thank you for your help guys, I know where I'm going now :).
Steph
il y a 5 ans
I couldn't resist :-)
I finally coded a new transcoder that correctly supports indexed color images. That way, you don't have to worry about it anymore... You will see that this time, the relationship with the palette is highlighted, since it is integrated in the generated code!
And then at the same time, I also added encoding support for gb.tft
with high resolution which is a little special...
NEW il y a 5 ans
I couldn't resist :-)
I finally coded a new transcoder that correctly supports indexed color images. That way, you don't have to worry about it anymore... You will see that this time, the relationship with the palette is highlighted, since it is integrated in the generated code!
And then at the same time, I also added encoding support for gb.tft
with high resolution which is a little special...
Codnpix
il y a 5 ans
Congratulations, this is really great ! I definitely could never have done this that fast that well (or not before the next decade ^^ !)
By curiosity, wich tech did you use to develop it ? PHP, Python , JS..?
Thanks again for adding that great contrib to all you've already done.
NEW il y a 5 ans
Congratulations, this is really great ! I definitely could never have done this that fast that well (or not before the next decade ^^ !)
By curiosity, wich tech did you use to develop it ? PHP, Python , JS..?
Thanks again for adding that great contrib to all you've already done.
Steph
il y a 5 ans
I coded this in JavaScript so there would be no exchange with a server. It's the browser's virtual machine working!
And I used the Jimp library to extract RGB pixels from the different image formats.