java识别psd文件笔记

原文:https://blog.xujiuming.com/ming/94809d83.html

前言

最近在做网盘的一些需求

需要预览一些奇奇怪怪的文件

先记录下psd文件如何生成预览图

例子

由于jdk的ImageIO相关class 无法直接解析psd 所以要另寻方案

直接解析psd

参考文档: https://blog.csdn.net/WASONE_WU/article/details/27695723

直接按照psd文件格式进行解析 具体的参考文档博文

~~~Java


importjava.awt.image.BufferedImage;

importjava.io.File;

importjava.io.FileNotFoundException;

importjava.io.IOException;

importjava.io.RandomAccessFile;

importjava.nio.MappedByteBuffer;

importjava.nio.channels.FileChannel;

publicclassPsdReader{

privateBufferedImage img =null;

privateint[] pixels;

privateRandomAccessFile raf;

privateint[] byteArray;

//用来接住unsignedByte,byte不存作负数(否则抛异常,说越过颜色范围)

privateint[][][] channelColor;

privateint[][] numOfBytePerLine;

// private final static int RED = 0;

// private final static int GREEN = 1;

// private final static int BLUE = 2;

privateshortnumOfChannel;

privateintheight;

privateintwidth;

privateshortisRle;

privateMappedByteBuffer mbbi;

publicPsdReader(File file){

FileChannel fc =null;

try{

this.raf =newRandomAccessFile(file,"r");

            fc = raf.getChannel();

longsize = fc.size();

this.mbbi = fc.map(FileChannel.MapMode.READ_ONLY,0, size);

}catch(FileNotFoundException e) {

            e.printStackTrace();

}catch(IOException e) {

            e.printStackTrace();

        }

this.readFile();

img =newBufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);

pixels =newint[width*height];

this.initPixels(pixels);

this.setRGB(img,0,0, width, height, pixels);

try{

            fc.close();

this.raf.close();

}catch(IOException e) {

            e.printStackTrace();

        }

    }

publicBufferedImagegetImg(){

returnimg;

    }

privatevoidinitPixels(int[] pixels){

intindex =0;

inta =255;

for(inth=0; h

for(intw=0; w

intr =this.channelColor[0][h][w];

intg =this.channelColor[1][h][w];

intb =this.channelColor[2][h][w];

if(this.numOfChannel>3) {

a =this.channelColor[3][h][w];

                }

pixels[index] = (a<<24) | (r<<16)

| (g<<8) | b;

                index++;

            }

        }

    }

privatevoidsetRGB( BufferedImage image,intx,inty,intwidth,intheight,int[] pixels ){

inttype = image.getType();

if( type == BufferedImage.TYPE_INT_ARGB || type == BufferedImage.TYPE_INT_RGB )

            image.getRaster().setDataElements( x, y, width, height, pixels );

else

image.setRGB( x, y, width, height, pixels,0, width );

    }

privatevoidreadFile(){

try{

//-------第一部分:文件头------------------

//通道数量

// this.raf.seek(0x0c);

this.mbbi.position(0x0c);

// numOfChannel = this.raf.readShort();

numOfChannel =this.mbbi.getShort();

//System.out.println("numOfChannel="+numOfChannel);

//图像高度

// height = this.raf.readInt();

height =this.mbbi.getInt();

//System.out.println("height="+height);

//图像宽度

// width = this.raf.readInt();

width =this.mbbi.getInt();

//System.out.println("width="+width);

//图像深度(每个通道的颜色位数)

// short depth = this.raf.readShort();

shortdepth =this.mbbi.getShort();

//System.out.println("depth="+depth);

//是rgb模式则type=3

// short type = this.raf.readShort();

shorttype =this.mbbi.getShort();

//System.out.println("type="+type);

//--------第二部分:色彩模式信息,这部分的长度通常为0----

// int lenOfColorModel = raf.readInt();

intlenOfColorModel =this.mbbi.getInt();

//System.out.println("lenOfColorModel="+lenOfColorModel);

// this.raf.seek(lenOfColorModel+this.raf.getFilePointer());//长度信息占4个字节,但是不用加,下同

this.mbbi.position(lenOfColorModel+this.mbbi.position());

//--------第三部分:图像资源数据------------------

// int lenOfImageResourceBlock = raf.readInt();

intlenOfImageResourceBlock =this.mbbi.getInt();

//System.out.println("lenOfImageResourceBlock="+lenOfImageResourceBlock);

// this.raf.seek(lenOfImageResourceBlock+this.raf.getFilePointer());

this.mbbi.position(lenOfImageResourceBlock+this.mbbi.position());

//--------第四部分:图层与蒙版信息----------------

// int lenOfLayerInfo = raf.readInt();

intlenOfLayerInfo =this.mbbi.getInt();

//System.out.println("lenOfLayer="+lenOfLayerInfo);

// this.raf.seek(lenOfLayerInfo+raf.getFilePointer());

this.mbbi.position(lenOfLayerInfo+this.mbbi.position());

//--------第五部分:图像数据--------------------

// isRle = raf.readShort();

isRle =this.mbbi.getShort();

//System.out.println("isRle="+isRle);

// //System.out.println("nowPosition="+this.raf.getFilePointer());

//System.out.println("nowPosition="+this.mbbi.position());

}catch(Exception e1) {

            e1.printStackTrace();

        }

this.channelColor =newint[numOfChannel][height][width];

if(isRle==1){

this.numOfBytePerLine =newint[numOfChannel][height];

for(inti=0; i

for(intj=0; j

try{

//TODO

// this.numOfBytePerLine[i][j] = this.raf.readUnsignedShort();

intti =this.mbbi.getShort();

if(ti<0) { ti +=65536; }

this.numOfBytePerLine[i][j] = ti;

}catch(Exception e) {

                        e.printStackTrace();

                    }

                }

            }

for(intc=0; c

for(inth=0; h

this.unpackbits(numOfBytePerLine[c][h],channelColor[c][h]);

                }

            }

}elseif(isRle==0) {

for(intc=0; c

for(inth=0; h

for(intw=0; w

try{

// this.channelColor[c][h][w] = this.raf.readUnsignedByte();

intti =this.mbbi.get();

if(ti<0) { ti +=256; }

this.channelColor[c][h][w] = ti;

}catch(Exception e) {

                            e.printStackTrace();

                        }

                    }

                }

            }

        }

    }

privatevoidunpackbits(intlenOfInput,int[] channelColor){

shortn =0;

intlast =0;

while(lenOfInput>0){

try{

// n = raf.readByte();

n =this.mbbi.get();

                lenOfInput--;

}catch(Exception e) {

                e.printStackTrace();

            }

if(0<=n && n<=127) {

intrepeatTime = n;

                ++repeatTime;

for(intt=0; t

try{

// channelColor[last+t] = raf.readUnsignedByte();

intti =this.mbbi.get();

if(ti<0) { ti +=256; }

                        channelColor[last+t] = ti;

                        lenOfInput--;

}catch(Exception e) {

                        e.printStackTrace();

                    }

                }

                last += repeatTime;

            }

elseif(-1>=n && n>=-127) {

intval =0;

intrepeatTime = -n;

                ++repeatTime;

try{

// val = raf.readUnsignedByte();

intti =this.mbbi.get();

if(ti<0) { ti +=256; }

                    val = ti;

//System.out.println(val);

                    lenOfInput--;

}catch(Exception e) {

                    e.printStackTrace();

                }

for(intt=0; t

                    channelColor[last+t] = val;

                }

                last += repeatTime;

            }

elseif(n==-128) {

//noop

            }

        }

    }

}

~~~

~~~Java

importnet.coobird.thumbnailator.Thumbnails;

importjavax.imageio.ImageIO;

importjava.awt.image.BufferedImage;

importjava.io.File;

importjava.io.IOException;

publicclassmain{

publicstaticvoidmain(String[] args)throwsIOException{

longnow = System.currentTimeMillis();

PsdReader psdReader =newPsdReader(newFile("02.psd"));

        BufferedImage bufferedImage = psdReader.getImg();

ImageIO.write(bufferedImage,"png",newFile("02.png"));

        System.out.println((System.currentTimeMillis() - now));

    }

}

~~~

twelvemonkeys + thumbnailator

参考文档:

https://www.cnblogs.com/interdrp/p/7076202.html

https://github.com/haraldk/TwelveMonkeys

https://github.com/coobird/thumbnailator

利用twelevemonkeys提供对ImageIo的增强直接读取 psd

~~~pom

<!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->

net.coobird

thumbnailator

0.4.14

com.twelvemonkeys.imageio

imageio-core

3.6.4

<!-- https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-psd -->

com.twelvemonkeys.imageio

imageio-psd

3.6.4

~~~


~~~java

importnet.coobird.thumbnailator.Thumbnails;

importjava.io.File;

importjava.io.IOException;

publicclassmain{

publicstaticvoidmain(String[] args){

longnow = System.currentTimeMillis();

try{

Thumbnails.of(newFile("03.psd"))

.size(1080,720)

.toFile(newFile("03.png"));

}catch(IOException e) {

            e.printStackTrace();

        }

        System.out.println((System.currentTimeMillis() - now));

    }

}

~~~

Aspose.psd for java

参考文档: https://downloads.aspose.com/psd/java

~~~pom


AsposeJavaAPI

Aspose Java API

http://repository.aspose.com/repo/

。。。。。

com.aspose

aspose-psd

20.9

jdk16


~~~

~~~java

importnet.coobird.thumbnailator.Thumbnails;

importjava.io.File;

importjava.io.IOException;

publicclassmain{

publicstaticvoidmain(String[] args){

longnow = System.currentTimeMillis();

// Load image

Image img = Image.load("03.psd");

//按需选择不同类型options 例如 png pdf jpeg等等

PngOptions options =newPngOptions();

// Convert PSD to png

img.save("03.png", options);

        System.out.println((System.currentTimeMillis() - now));

    }

}

~~~

总结

如果要直接粗暴读取 直接按照psd 格式硬读取即可

如果有其他的一些需求 建议 twelvemonkeys + thumbnailator组合 不仅仅是读取psd 还可以做一些奇奇怪怪的事情

Aspose.psd for java方案的话 如果是部署在windows下 可以使用 如果要部署linux下 需要将windows字体库安装到linux下 否则会报错

个人建议还是 twelvemonkeys + thumbnailator 读取、打水印乱七八糟的操作 都可以简单直接快速处理

------ 本文结束 ------

版权声明

ming创作并维护,博客采用CC协议

本文首发于ming 博客( https://blog.xujiuming.com ),版权所有,转载请注明出处!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容