Page 1 of 1

[8x] webtoon in dog colors [pugtp]

PostPosted: Sat Aug 06, 2016 18:52
by pithy
webtoon converted to how a dog would see it.

license: CC0

Re: [8x] webtoon in dog colors [pugtp]

PostPosted: Sat Aug 06, 2016 19:12
by MineYoshi
Interesting, what image editor or script do you use for this?

Re: [8x] webtoon in dog colors [pugtp]

PostPosted: Sat Aug 06, 2016 21:49
by pithy
MineYoshi wrote:Interesting, what image editor or script do you use for this?

Imagemagick
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
mogrify -path ../pugtp -channel RG -fx "(0.25*r)+(0.75*g)" *.png

Watch out for textures that use "[makealpha", you must change the alpha color back to what it was.

Learned to use Imagemagick just for this.

Re: [8x] webtoon in dog colors [pugtp]

PostPosted: Sat Aug 06, 2016 23:21
by MineYoshi
Nice!

PostPosted: Sun Aug 07, 2016 09:56
by Hybrid Dog
If you have shaders support, you can simply edit shader file instead of changing the texture files, just add this to the end of client/shaders/nodes_shader/opengl_fragment.glsl:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
float rg = (0.25*col.rgb.r)+(0.75*col.rgb.g);
col.rgb.r = rg;
col.rgb.g = rg;

Image
Image