Branches
Comments
[»]
Can't get it to work with GIF Files
by tjhsiao - May 12th 2006 16:38:36
Very happy with JPG (BMP and PNG) files. Can't seem to work/recognize GIF
files.
Any idea?
Thanks.
[reply]
[top]
[»]
add some package and fixing Boolean.toString
by victor - May 26th 2004 21:21:26
fyi : these were two modifications I had to change
to perform in order for jsp using ImageInfo to compile.
1. add some package - arguable
2. replace Boolean.toString()
1d0
< package net.freshmeat;
1071c1070
< printLine(1, "Progressive: ",
ii.isProgressive() + "");
---
> printLine(1, "Progressive: ",
Boolean.toString(ii.isProgressive()));
-- wrestling in the garden is same as mud
[reply]
[top]
[»]
Refactoring
by Ben Liang - Feb 9th 2003 21:33:33
ImageInfo IS a very handy utility.
Have you ever thought about refactoring it so it will be easier to use and
maintenance? Using factory/builder pattern to return a info class; if
format not supported then return null or throw an exception.
-- Ben Liang
[reply]
[top]
[»]
Re: Refactoring
by Marco Schmidt - Feb 11th 2003 23:17:49
> ImageInfo IS a very handy utility.
>
> Have you ever thought about refactoring
> it so it will be easier to use and
> maintenance? Using factory/builder
> pattern to return a info class; if
> format not supported then return null or
> throw an exception.
ImageInfo has grown quite a bit. It started out as a class to extract
width and height from GIF, PNG and JPG. Now it can extract more from more
formats, and in order for it to grow even further it would certainly have
to be refactored. However, I don't intend to write a 'real' meta data
extraction library right now, as useful as that would be. Someone would
have to start a new project for that. ImageInfo might be a good basis for
such a library.
Marco
[reply]
[top]
|