91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據

發布時間:2020-08-18 00:29:02 來源:ITPUB博客 閱讀:164 作者:i042416 欄目:編程語言

所謂圖片元數據,就是除了我們肉眼看到的圖片內容外,隱藏在這些內容背后的一些技術數據。

本文介紹如何使用Java代碼將一張圖片的隱藏信息讀取出來。

首先不需要下載任何額外的Java庫,用JDK自帶的庫就能工作。

import java.io.ByteArrayInputStream;import java.io.File;import java.io.FileInputStream;import java.io.IOException;import javax.imageio.ImageIO;import javax.imageio.ImageReader;import javax.imageio.metadata.IIOMetadata;import javax.imageio.metadata.IIOMetadataNode;import org.w3c.dom.NamedNodeMap;import org.w3c.dom.Node;import org.w3c.dom.NodeList;import com.sun.imageio.plugins.png.PNGMetadata;
新建一個Java類,這個類的main方法也是非常直接的:static public void main(String[] arg) throws IOException{byte[] content = getContent("C:\Users\i042416\Desktop\test\clipboard1.png");
readCustomData(content);
}

首先把桌面上名叫clipboard1.png的圖片文件的內容讀到字節數組content中。

getContent方法的代碼:

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據

一張png圖片的元數據,散布在下面這些節點里:

printNode(pngmeta.getStandardChromaNode());
printNode(pngmeta.getStandardCompressionNode());
printNode(pngmeta.getStandardDataNode());
printNode(pngmeta.getStandardDimensionNode());
printNode(pngmeta.getStandardDocumentNode());
printNode(pngmeta.getStandardTextNode());
printNode(pngmeta.getStandardTransparencyNode());

通過printNode打印出來:

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據

printNode方法的源代碼:

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據

打印出來的元數據:

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據

如果大家想要復制粘貼,這是全部的源代碼:

package image;import java.io.ByteArrayInputStream;import java.io.File;import java.io.FileInputStream;import java.io.IOException;import javax.imageio.ImageIO;import javax.imageio.ImageReader;import javax.imageio.metadata.IIOMetadata;import javax.imageio.metadata.IIOMetadataNode;import org.w3c.dom.NamedNodeMap;import org.w3c.dom.Node;import org.w3c.dom.NodeList;import com.sun.imageio.plugins.png.PNGMetadata;public class pngTest {static private byte[] getContent(String filePath) throws IOException {
File file = new File(filePath);long fileSize = file.length();if (fileSize > Integer.MAX_VALUE) {
System.out.println("file too big...");return null;
}
FileInputStream fi = new FileInputStream(file);byte[] buffer = new byte[(int) fileSize];int offset = 0;int numRead = 0;while (offset < buffer.length
&& (numRead = fi.read(buffer, offset, buffer.length - offset)) >= 0) {
offset += numRead;
}if (offset != buffer.length) {
fi.close();throw new IOException("Could not completely read file "+ file.getName());
}
fi.close();return buffer;
}static private void readCustomData(byte[] imageData) throws IOException{
ImageReader imageReader = ImageIO.getImageReadersByFormatName("png").next();
imageReader.setInput(ImageIO.createImageInputStream(new ByteArrayInputStream(imageData)), true);
IIOMetadata metadata = imageReader.getImageMetadata(0);
PNGMetadata pngmeta = (PNGMetadata) metadata;
printNode(pngmeta.getStandardChromaNode());
printNode(pngmeta.getStandardCompressionNode());
printNode(pngmeta.getStandardDataNode());
printNode(pngmeta.getStandardDimensionNode());
printNode(pngmeta.getStandardDocumentNode());
printNode(pngmeta.getStandardTextNode());
printNode(pngmeta.getStandardTransparencyNode());
}static private void printNode(IIOMetadataNode metanode){if (metanode == null)return;
NodeList childNodes = metanode.getChildNodes();if( childNodes == null)return;for (int i = 0; i < childNodes.getLength(); i++) {
Node node = childNodes.item(i);
NamedNodeMap attribute = node.getAttributes();if( attribute == null)continue;int length = attribute.getLength();for( int j = 0; j < length; j++){
Node each = attribute.item(j);
String value = each.getNodeValue();
String name = each.getNodeName();
System.out.println("Name: " + name + " value: " + value);
}
}
}static public void main(String[] arg) throws IOException{byte[] content = getContent("C:\Users\i042416\Desktop\test\clipboard1.png");
readCustomData(content);
}
}

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

使用com.sun.imageio.plugins.png.PNGMetadata讀取圖片的元數據


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳原县| 佛冈县| 年辖:市辖区| 白山市| 乐安县| 伊通| 建瓯市| 龙胜| 旌德县| 贡嘎县| 舞钢市| 从江县| 康乐县| 汾西县| 芜湖县| 嘉祥县| 泾阳县| 仲巴县| 元江| 临夏市| 蒲城县| 渭南市| 会同县| 台山市| 五莲县| 阜宁县| 普安县| 黄山市| 凤庆县| 怀化市| 普洱| 云和县| 博乐市| 广丰县| 沧源| 定襄县| 广东省| 格尔木市| 溧水县| 遂宁市| 明星|