| |
Monte Carlos
Registered: Jun 2004 Posts: 359 |
Double pixel combination fixer
I need some tool to fix double pixel combinations. I was drawing a hires logo with project one under wine/linux. It didn't save my hires drawing (the file was there but actually 0 bytes). Therefore i saved it as koala (I know that it is the wrong format but what could i do else) and got it rescued to disk.
Unfortunately the bitmap got pixel combinations in double pixels exchanged. 00 -> 01, 11 -> 10, 01 -> 11, 11 -> 00
Is there a crossplatform tool to fix that? |
|
| |
Walt
Registered: May 2004 Posts: 47 |
PicConv if done correctly... Runs in Windows and under Wine.
Otherwise let me take a look at it :) |
| |
Burglar
Registered: Dec 2004 Posts: 1101 |
make a screenshot and run it through png2prg 0.8.
or use picconv ;) |
| |
Monte Carlos
Registered: Jun 2004 Posts: 359 |
Thank you for hinting me on the pretty useful PicConv. I was not aware of this tool. |
| |
Monte Carlos
Registered: Jun 2004 Posts: 359 |
Managed it, but needed to remadd some pixels again. Hires information was already lost. Thank you, again. |
| |
Oswald
Registered: Apr 2002 Posts: 5094 |
sorry for the trouble man, guys stop using p1 its old and shit there are a lot of cool alternatives :P |
| |
Krill
Registered: Apr 2002 Posts: 2980 |
Time for Project Two! |
| |
JackAsser
Registered: Jun 2002 Posts: 2014 |
Indeed. It’s easy! Files -> New Project -> Save. PROFIT! |
| |
Copyfault
Registered: Dec 2001 Posts: 478 |
Quoting Monte Carlos...
Unfortunately the bitmap got pixel combinations in double pixels exchanged. 00 -> 01, 11 -> 10, 01 -> 11, 11 -> 00
Is there a crossplatform tool to fix that? Maybe I'm too oldschool, but couldn't this be fixed by some 6510-code
...
ldy bitmapbyte
lda correct_byte_tab,y
sta bitmapbyte
...
wrapped up in a loop?
But yeah, it's 2021 already and PicConv is without doubts a really nice toy :) |
| |
Monte Carlos
Registered: Jun 2004 Posts: 359 |
The issue is not with project one.
I stumbled over the same issue with Pixcen. I think sth does not work with WINE which results in a 0 byte bmp.
Why on earth this only happens with the bmp file format, i don't know.
However, my data is save, now. |