Go Back   Velocity Reviews > Newsgroups > Java
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Java - Java Thumbnail/Resize Image App

 
Thread Tools Search this Thread
Old 05-11-2006, 07:34 PM   #1
Default Java Thumbnail/Resize Image App


I'm looking for an java image resize app that is very simple. I'm
looking for something like the old ebay ipix app where I can resize
jpg,jpeg,gif,bmp,png to a max width of 600px and display a preview on
the page until ready to upload. I've used thinimage but too much for
me, I want simplier than that. Are there any apps out there? I've
never done java before.



Barkster
  Reply With Quote
Old 05-11-2006, 07:42 PM   #2
jmcgill
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
Barkster wrote:
> I'm looking for an java image resize app that is very simple. I'm
> looking for something like the old ebay ipix app where I can resize
> jpg,jpeg,gif,bmp,png to a max width of 600px and display a preview on
> the page until ready to upload. I've used thinimage but too much for
> me, I want simplier than that. Are there any apps out there? I've
> never done java before.


I don't understand why you're looking for an entire app. Java has
built-in methods to scale images. It's in Image.getScaledInstance().

But your message sounds like you're looking for a user application as
opposed to information to help you write your own program. In that
case, you're sort of in the wrong place.

Here's something (The first google hit for "java image scale")
I wouldn't do it this way, but it probably works:

http://schmidt.devlib.org/java/save-jpeg-thumbnail.html



jmcgill
  Reply With Quote
Old 05-11-2006, 08:40 PM   #3
Barkster
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
Yeah don't know much about java, used javascript a lot but never built
anything in java. I've seen that posting but don't know how to
implement how I'm trying to. You are right though, I guess I'm not
looking for an app, I'm looking for a user application for a web page.
Thanks



Barkster
  Reply With Quote
Old 05-12-2006, 09:43 PM   #4
jcsnippets.atspace.com
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
"Barkster" <> wrote in message
news: ups.com...
> I'm looking for an java image resize app that is very simple. I'm
> looking for something like the old ebay ipix app where I can resize
> jpg,jpeg,gif,bmp,png to a max width of 600px and display a preview on
> the page until ready to upload. I've used thinimage but too much for
> me, I want simplier than that. Are there any apps out there? I've
> never done java before.


If you're looking for a piece of code that will do this, have a look at the
following:
http://jcsnippets.atspace.com/java/g...thumbnail.html

Best regards,

JayCee
--
http://jcsnippets.atspace.com/
a collection of source code, tips and tricks




jcsnippets.atspace.com
  Reply With Quote
Old 05-13-2006, 06:42 PM   #5
Barkster
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
Thanks, now I just need to figure out how to implement it into a
webpage to allow user to browse to the file and get ready to upload.



Barkster
  Reply With Quote
Old 05-13-2006, 11:54 PM   #6
jcsnippets.atspace.com
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
"Barkster" <> wrote in message
news: oups.com...
> Thanks, now I just need to figure out how to implement it into a
> webpage to allow user to browse to the file and get ready to upload.


A quick search on Google provided me with a link to the following page
(amongst many many others):
http://www.jguru.com/faq/view.jsp?EID=160

There are plenty of links with examples on how to achieve a file upload
available there.

Best regards,

JayCee
--
http://jcsnippets.atspace.com/
a collection of source code, tips and tricks




jcsnippets.atspace.com
  Reply With Quote
Old 05-14-2006, 02:54 AM   #7
Barkster
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
Hmmn, I'm not sure if that is what I need. I'm using php and what to
make some simple applet like www.thinfile.com but don't need any of the
features. I've bought theirs but doesn't quite handle the files the
way I want. I want to resize up to 6 images client side then after the
users selects the files they want then they send to upload page. I'll
do another google search but I've been searching for a week on some
type of example to do this, I found a class that resizes just like I
want but you have to send the filename/path etc when you run the class.
I'm looking for something to browse to the file, it resizes it and
stores on users temp folder till they hit upload. Thanks for any help.



Barkster
  Reply With Quote
Old 05-14-2006, 05:43 AM   #8
G Winstanley
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
On 11 May 2006 11:34:28 -0700, the cup of "Barkster" <>
overfloweth with the following:

> I'm looking for an java image resize app that is very simple. I'm
> looking for something like the old ebay ipix app where I can resize
> jpg,jpeg,gif,bmp,png to a max width of 600px and display a preview on
> the page until ready to upload. I've used thinimage but too much for
> me, I want simplier than that. Are there any apps out there? I've
> never done java before.


I wrote something a little while ago to do this, although it doesn't
handle BMP images (I may add that at some point). There are still a few
small GUI glitches, but it may help with what you want.
http://www.snaq.net/java/PhotoGallery/

Stan


G Winstanley
  Reply With Quote
Old 05-14-2006, 12:28 PM   #9
jcsnippets.atspace.com
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
"Barkster" <> wrote in message
news: ups.com...
> Hmmn, I'm not sure if that is what I need. I'm using php and what to
> make some simple applet like www.thinfile.com but don't need any of the
> features. I've bought theirs but doesn't quite handle the files the
> way I want. I want to resize up to 6 images client side then after the
> users selects the files they want then they send to upload page. I'll
> do another google search but I've been searching for a week on some
> type of example to do this, I found a class that resizes just like I
> want but you have to send the filename/path etc when you run the class.
> I'm looking for something to browse to the file, it resizes it and
> stores on users temp folder till they hit upload. Thanks for any help.


Ah, now I see. I've had a quick look at the url you specified, and trusted
applets is indeed the way to go imho.

I'm afraid I don't have any examples at hand for your specific request - if
I find something, I'll post it asap.

Best of luck,

JayCee
--
http://jcsnippets.atspace.com/
a collection of source code, tips and tricks




jcsnippets.atspace.com
  Reply With Quote
Old 05-14-2006, 04:17 PM   #10
Barkster
 
Posts: n/a
Default Re: Java Thumbnail/Resize Image App
I'm having a hard time evening finding how to build an applet for a
webpage. Everything I find is for standalone app. I just don't know
anything about java apps, what can I search for to find any help in
developing a web app like I'm looking for? Thanks



Barkster
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
java ImageIO API PNG image nekt Software 1 02-27-2009 12:32 PM
Image acquires Criterion Goro DVD Video 2 08-04-2005 02:28 AM
Anamorphic downconversion, digital video essentials, my recent foray into videophile land, frustration and heartbreak cg DVD Video 18 09-21-2004 01:30 AM
Advantage of 4:3 hdtv over old 4:3 Adam Smith DVD Video 17 12-15-2003 07:25 PM
New Releases: Short Circuit, Kung Fu Series, Image Horror: Updated complete downloadbable R1 DVD DB & info lists Doug MacLean DVD Video 0 12-13-2003 05:31 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46