imglib
imglib copied to clipboard
Do you have desired features?
[EN] You can list your expected features in the comment area or new issue, and the adopted features will be added to the planned features. Maybe in the next version, the new features you expect will be able to be implemented.
[ZH] 如果您有期望的特性,可以在评论区或者 issue 中告诉我,经采纳的建议特性将被加入到计划的功能特性中。也许在下个版本,就能实现您期待的新特性。
分辨模糊图片
识别、定位图片中的纯色区域(矩形、圆形等)
能给出一个简单读取 base64 图像内容的例子吗?我看样例里都是直接读文件,要么是空白源开始。
能给出一个简单读取base64图像内容的例子吗?我看例子里都是直接读取文件,或者是空白源开始。
暂没有提供直接从 base64 读取图像的方法,不过提供了构建自 BufferedImage 和 InputStream 的方式
byte[] fir = Base64.getDecoder().decode("base64 str of image1");
byte[] sec = Base64.getDecoder().decode("base64 str of image2");
ImagePipes.of(new ByteArrayInputStream(fir), new ByteArrayInputStream(sec))
...