我正在尝试以 2bpp 的灰度将 80x80 图像转换为 56x56 图像。
80x80 的图像是彩色的,其中可能有多达 16 种颜色。它们还具有透明背景。
我需要将它们灰度化,其中有 4 种颜色,白色是最亮的,黑色是最暗的。
每个图像都有多种颜色,但每种颜色都有 3 种颜色的调色板,一种是深色,一种是中色,一种是浅色。
我需要将所有深色的转换为深灰色,将中等的转换为浅灰色,将浅的转换为白色,同时保持图像中已经存在的黑色。
我可以成功地将图像转换为灰度,修剪画布,并使用此命令填充背景
convert input.png +dither -flatten -trim -set colorspace Gray -
separate -average output.png
现在我需要限制颜色,但它没有转换正确的颜色。浅色正在转换为浅灰色而不是白色。当我更改 -level 选项时,它仅适用于某些图像。
-auto-levels 也不符合我的要求。
有没有办法将中档的颜色设置为自动调平以满足我的要求?如果我解释得不够充分,我很抱歉。
这是我一直在篡改的代码,但它只适用于少数图像。使用 gamma 选项可以使其适用于更多图像,但会破坏原始工作图像。
convert "$f" +dither -flatten -trim -set colorspace Gray -separate -
average -gamma 1.37 -level 25%,75% -colors 4 -adaptive-resize 56x56\>
-background white -gravity center -extent 56x56 -remap nido.png
"${f%.png}".png2
我无法提供预期的图像,但提供与预期相似的图像。这是原始图像https://img.pokemondb.net/sprites/black-white/normal/charizard.png这里是所需的输出格式图像https://img.pokemondb.net/sprites/red-blue/normal/喷火龙.png
这是我到目前为止所得到的 https://www.pokecommunity.com/showthread.php?p=9692599#post9692599
convert "$f" +dither -background white -flatten -trim -adaptive-resize
56x56\> "${f%.png}".png2
convert "${f%.png}".png2 +dither -colorspace gray -separate -average
"${f%.png}".png2
convert "${f%.png}".png2 +dither -gamma 3.0 -black-threshold 70%
"${f%.png}".png2
convert "${f%.png}".png2 +dither -gamma 0.45 -white-threshold 90%
"${f%.png}".png2
convert "${f%.png}".png2 +dither -remap nidoking.png -background white
-gravity center -extent 56x56 "${f%.png}".png2
顺便说一句, ^ 在 for 循环中,因此是变量。改变游戏和黑白阈值让我更接近,但这非常乏味,当我得到一个图像来正确转换另一个中断时。nidoking.png 是我的重映射文件。重映射工作完美,就在重映射颜色被正确分离或过滤之前。
解决了,感谢 Mark Setchell
这就是我最终做的
#!/bin/bash
rm x*
rm colors*
cd images
rm *.png2
rm *.txt
for f in *.png
do
#Fitting canvas to image, setting background color, and removing transparency
convert "$f" +dither -background white -flatten -trim "${f%.png}".png2
#Converting image to greyscale
convert "${f%.png}".png2 +dither -colorspace gray -separate -average "${f%.png}".png2
#Resizing without blurring/adding pixels
convert "${f%.png}.png2" +dither -interpolate Nearest -interpolative-resize 56x56\> "${f%.png}".png2
#Grabbing every color used in image and putting it in a text file
convert "${f%.png}.png2" txt: | sed '1d' | cut -f 4 -d " " | sort -u > "${f%.png}".txt
done
#Putting all colors into one file
cat *.txt >> ../colors
cd ../
#One last clean up of file/sorting
cat colors | tr " " "\n" | sort -u > colors.txt
rm colors
#Splitting the hex codes into four files for each desired color
file=colors.txt
lines=$(wc -l <${file})
((lpp = (lines + 4 - 1) / 4))
split --lines=${lpp} ${file}
#Going back to images directory
cd images
for f in *.png
do
#Each while loop reads everyone line of the specified file and puts it in variable $i, then I use $i to convert to one of the desired 4 colors.
cat ../xaa | while read i
do
convert "${f%.png}".png2 +dither -fuzz 0% -fill "#000000" -opaque "${i}" "${f%.png}".png2
done
cat ../xab | while read i
do
convert "${f%.png}".png2 +dither -fuzz 0% -fill "#555555" -opaque "${i}" "${f%.png}".png2
done
cat ../xac | while read i
do
convert "${f%.png}".png2 +dither -fuzz 0% -fill "#AAAAAA" -opaque "${i}" "${f%.png}".png2
done
cat ../xad | while read i
do
convert "${f%.png}".png2 +dither -fuzz 0% -fill "#FFFFFF" -opaque "${i}" "${f%.png}".png2
done
mv "${f%.png}".png2 ../finished/"${f}"
done