-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use mini_magick instead of rmagick #1
Conversation
end | ||
|
||
def to_256color(pix, memo) | ||
return -1 if pix.opacity.positive? | ||
# TODO: Need to figure out how to extract opacity. | ||
# return -1 if pix.opacity.positive? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちら、 opacity
が正の場合、-1
で良いのでしょうか?
transparent
が正なら、透明の場合に無視する、というロジックが理解できるのですが…
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここは透明の場合に-1
を返す、ということを意図しています。
手元で試したところ、不透明の場合にopacity=0
、完全に透明の場合にopacity=65535
になるようなので、上記コードになっています。
end | ||
end | ||
h.max_by { |a| a[1] }[0] | ||
end | ||
|
||
def to_256(pix) | ||
[pix.red / 257, pix.green / 257, pix.blue / 257] | ||
red, green, blue = pix | ||
[red % 256, green % 256, blue % 256] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちら、僕の変更は意図として合っていると思うのですが、rmagick
の際の数値が分からないため、正確かどうか不安な状態です。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rmagick
では画素値が0 ~ 65535の値となるので、0 ~ 255の値に変換するために割り算をしています。257
はバグでした。256
で除すのが正しいです。
ただ、mini_magick
はデフォルトで0 ~ 255の値を返すようなので、そもそもto_256
自体が不要のようです。
|
rmagick
が古いImageMagick
を要求してきたため、mini_magick
に置き換えてみました。以下の点、相談できればと思います。