Skip to content
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

Closed
wants to merge 1 commit into from
Closed

Use mini_magick instead of rmagick #1

wants to merge 1 commit into from

Conversation

diskshima
Copy link

rmagick が古い ImageMagick を要求してきたため、mini_magick に置き換えてみました。

以下の点、相談できればと思います。

  1. ピクセルの色の浮動少数の扱いなどが少し変わっています。
  2. 透明度のコードがちょっとわからない部分があり、TODOにしてあります。

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?
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

こちら、 opacity が正の場合、-1 で良いのでしょうか?
transparent が正なら、透明の場合に無視する、というロジックが理解できるのですが…

Copy link
Owner

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]
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

こちら、僕の変更は意図として合っていると思うのですが、rmagick の際の数値が分からないため、正確かどうか不安な状態です。

Copy link
Owner

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自体が不要のようです。

@yskoht
Copy link
Owner

yskoht commented Nov 10, 2018

rmagickで古いバージョンのImageMagickを入れないといけないのは自分も気になっていたので、mini_magickに移行できたらよいのですが、mini_magickでアルファ値を取得する方法がわからなかったので、一旦このPRは閉じます🙇

@yskoht yskoht closed this Nov 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants