Re: Suggestions with code design

2008-12-09 Thread Rohan Redkar
Everyone, Thank you very much for the inputs. On Mon, Dec 8, 2008 at 3:42 PM, Thomas Broyer <[EMAIL PROTECTED]> wrote: > > > > On 7 déc, 05:54, Rohan Redkar <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > > > My application requires the user to select a bunch of images from his > > system. Then

Re: Suggestions with code design

2008-12-08 Thread Thomas Broyer
On 7 déc, 05:54, Rohan Redkar <[EMAIL PROTECTED]> wrote: > Hi everyone, > > My application requires the user to select a bunch of images from his > system. Then I need to do modifications on these images(example aline > them horizontally into a single image). > I need some design suggestions on

Re: Suggestions with code design

2008-12-08 Thread rakesh wagh
gwt is not going to help you a lot here(Think in terms of html and js. If html and js cannot do, gwt can neither.). Did you check the recent javafx release? I think it is best suited for your work. At least the image manipulation part. On Dec 6, 10:54 pm, Rohan Redkar <[EMAIL PROTECTED]> wrote: >

Re: Suggestions with code design

2008-12-08 Thread alex.d
RPC doesn't and can't handle file uploads. AWT can't be used on the client side. You will to have to write a normal servlet, upload your images, return a combined image at the end. I've seen some nice flash multi-file- upload-widgets that you probably can use. On 7 Dez., 05:54, Rohan Redkar <[EMA

Suggestions with code design

2008-12-06 Thread Rohan Redkar
Hi everyone, My application requires the user to select a bunch of images from his system. Then I need to do modifications on these images(example aline them horizontally into a single image). I need some design suggestions on how I can achieve this? I guess, AWT cannot be directly used at the cl