Alpha 通道坐标
我有一个带有透明区域(矩形)的图像。 我需要检测左上角透明像素的坐标和右下角像素的坐标。 如何使用 imagemagick 或 ruby 做到这一点?
I have an image with transparent area(rectangle).
I need to detect coords of the top left transparent pixel and the coords of the bottom right pixel.
How to do that with imagemagick or ruby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Image magick identify 命令 使用选项
-verbose -alpha
应该打印您需要的信息。此命令采用透明背景的 Google 徽标,并提取仅阿尔法通道。然后它获取该图像的属性(预览)。并将它们输出到命令行。
Image magick identify command using the options
-verbose -alpha
should print the information you need.This command takes the Google logo with a transparent background and extracts the alpha channel only. It then takes the properties of this image (preview). And outputs them to the command line.