• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

image editing jars

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

In my web application I have to add functionality to allow a user to
upload images, display them and adjust the brightness. I am using Websphere 6.0 (jdk 1.4). Could
someone tell me if there are any jars that I can use for adjusting the brightness of images.
The previous application ( I am rewriting an application) used JAI
(Java Advanced Imaging). Is that the best option available?
The user can upload large images and I am concerned about memory utilization.
I am extremely new to Image editing.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure if JAI is the best possible way to do it, but if you have working code that uses it, and have no complaints about it, why change?

Personally, I'm a fan of ImageJ for image processing tasks, but that's because I've been using it for a long time, and thus never got into JAI.
 
Ranch Hand
Posts: 85
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think java.awt.Image can do this ,you just need write a simple code.
But if you still want find a good image editing jars.
You can check here
http://rivit.cs.byu.edu/jigl/
[ July 14, 2007: Message edited by: Shoumin Li ]
 
nikki mateti
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We have been getting outofmemory exceptions using JAI in the previous application. I'm basically looking for an alternative which is more memory efficient.
reply
    Bookmark Topic Watch Topic
  • New Topic