Re: Small jpg manipulation library?




Why reinvent the wheel? http://www.kevinboone.com/README_txt2jpg.html

It's java, but with this being a one-off, it doesn't really matter.


Java (jpeg Jre) is heavy. It's much easier to strip down jpeg lib.
We have about 150K binary so far. The following is an example
(for our dance teacher) for jpg resolution reductions. We want to
overlay both texts and images on it as well.

http://rumba.fine-arts.ws

-rw-r--r-- 1 root wheel 133 Jun 19 19:00 Makefile
-rw-r--r-- 1 root wheel 38603 Jun 19 19:02 a1.jpg
-rw-r--r-- 1 root wheel 24366 Jun 19 19:02 a2.jpg
-rw-r--r-- 1 root wheel 14051 Jun 19 19:05 b1.jpg
-rw-r--r-- 1 root wheel 14510 Jun 19 19:05 b2.jpg
-rw-r--r-- 1 root wheel 5353 Jun 19 19:05 c1.jpg
-rw-r--r-- 1 root wheel 5491 Jun 19 19:05 c2.jpg
-rw-r--r-- 1 root wheel 38 Jun 19 19:00 data
-rw-r--r-- 1 root wheel 604 Jun 19 19:06 index.html
-rwxr-xr-x 1 root wheel 124878 Jun 19 18:55 jpg
-rwxr-xr-x 1 root wheel 2635 Jun 19 19:29 main.php
-bash-2.05b# more Makefile
all:
./jpg -i a1.jpg -o b1.jpg -r 2
./jpg -i a2.jpg -o b2.jpg -r 2
./jpg -i b1.jpg -o c1.jpg -r 2
./jpg -i b2.jpg -o c2.jpg -r 2

.



Relevant Pages

  • Re: HTML Processing in Java
    ... >I would like to process html pages in java. ... The very first task would ... to strip the HTML out optionally convert the &xxx; ... http://mindprod.com Java custom programming, consulting and coaching. ...
    (comp.lang.java.programmer)
  • Re: regular expression problem
    ... and the expression I used works in the text editor but not in Java. ... I'm trying to do word analysis of sentences and I need to strip the ...
    (comp.lang.java.help)
  • Re: How to strip comments out of code
    ... I need to write a class that will take a java file as input, strip all ... and save thre result in a different file.... ... As you want to process Java and can read it, ... martin@ | Martin Gregorie ...
    (comp.lang.java.programmer)