a2d/desk.acc/res/hex2px.pl

12 lines
207 B
Perl
Raw Normal View History

2017-09-10 00:43:37 +00:00
#!/usr/bin/env perl
# Convert $xx into px(bbbbbbb) - input to A2D_DRAW_PATTERN
use strict;
use warnings;
while (<STDIN>) {
s/(\$(..))/'px(%' . reverse(sprintf('%07b', hex($2))) . ')'/eg;
print;
}