I have a huge stream of pixels (100000x1) and wanna cut after x pixels to create a "normal" sized picture - I could do it kinda manually with a lot of scripting - is there a faster way to achieve this goal?
Just a small input sample:
Code: Select all
convert -size 56x1 xc: -sparse-color Barycentric '0,0 rgba(200,0,0, 1.0) 56,0 rgba(255,0,0, 1.0)' test1.bmp
Any help appreciated!
Thanks