Java图像处理库 jrawio

码农软件 · 软件分类 · 图形/图像处理 · 2019-09-09 12:11:32

软件介绍

jrawio 是一个 Java Image I/O API 的服务提供者,用来处理数码相机拍摄的RAW格式的图片,包括NEF, CRW, CR2, PEF, SRF, MRW,这是一个纯 Java 的类库。

示例代码:

File file = new File("DSC1234.NEF");
ImageReader reader = ImageIO.getImageReaders(file).next();
reader.setInput(ImageIO.createImageInputStream(file));
IIOMetadata metadata = reader.getImageMetadata(0);
NEFMetadata nefMetadata = (NEFMetadata)metadata;

本文地址:https://www.codercto.com/soft/d/14213.html

Web Development Recipes

Web Development Recipes

Brian P. Hogan、Chris Warren、Mike Weber、Chris Johnson、Aaron Godin / Pragmatic Bookshelf / 2012-1-22 / USD 35.00

You'll see a full spectrum of cutting-edge web development techniques, from UI and eye candy recipes to solutions for data analysis, testing, and web hosting. Make buttons and content stand out with s......一起来看看 《Web Development Recipes》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

URL 编码/解码
URL 编码/解码

URL 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器