Flatten PNGs w/ white BG before dither

Some were showing up w/ black BG
This commit is contained in:
David Eisinger
2024-02-02 09:53:37 -05:00
parent ffd81fee79
commit b7ba473309

View File

@@ -27,6 +27,8 @@ get "/*" do |path|
convert = MiniMagick::Tool::Convert.new
convert << @decrypted.path
convert.background("white")
convert.layers("flatten")
if geometry
if geometry.start_with?("x") || geometry.end_with?("x")