imglib icon indicating copy to clipboard operation
imglib copied to clipboard

Do you have desired features?

Open nackily opened this issue 2 years ago • 4 comments

[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 中告诉我,经采纳的建议特性将被加入到计划的功能特性中。也许在下个版本,就能实现您期待的新特性。

nackily avatar Mar 08 '23 02:03 nackily

分辨模糊图片

devishell avatar May 11 '23 10:05 devishell

识别、定位图片中的纯色区域(矩形、圆形等)

Kaymin avatar Feb 06 '24 06:02 Kaymin

能给出一个简单读取 base64 图像内容的例子吗?我看样例里都是直接读文件,要么是空白源开始。

cheerayhuang avatar Sep 26 '24 02:09 cheerayhuang

能给出一个简单读取base64图像内容的例子吗?我看例子里都是直接读取文件,或者是空白源开始。

暂没有提供直接从 base64 读取图像的方法,不过提供了构建自 BufferedImageInputStream 的方式

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))
	...

nackily avatar Sep 26 '24 02:09 nackily