Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mark
yea that`s the idea.. nut how to make it in ajax? 2007/3/22, Benjamin Sterling [EMAIL PROTECTED]: I would assume you would put a set timeout function on it somewhere and then have the the form submit and process thru ajax, and when the response from the server is complete, you will append the

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Omar Rodriguez
I would think that you could do this using php and gd... http://us3.php.net/manual/en/ref.image.php here's one way to do it... http://icant.co.uk/articles/phpthumbnails/ a quick search for php create thumbnails should help you find other/better resources for creating images on the fly with php.

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Ⓙⓐⓚⓔ
that would require intimate knowledge of png format internals... I've never seen that kind of code in Javascript! php or perl would be a much saner direction! On 3/23/07, Mark [EMAIL PROTECTED] wrote: yea that`s the idea.. nut how to make it in ajax? 2007/3/22, Benjamin Sterling [EMAIL

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mark
I would think that you could do this using php and gd... http://us3.php.net/manual/en/ref.image.php here's one way to do it... http://icant.co.uk/articles/phpthumbnails/ a quick search for php create thumbnails should help you find other/better resources for creating images on the fly with

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mark
ehm.. my javascript knowledge is kinda limited ^_^ would you (or anyone that has some javascript knowledge) like to make a sample code? i can expand it to mu wishes when i have a sample code but it`s really hard for me to start from scratch. i can do all the php coding myself Thanx Mark.

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mateusz Misiorny
On 3/23/07, Mark [EMAIL PROTECTED] wrote: ehm.. my javascript knowledge is kinda limited ^_^ would you (or anyone that has some javascript knowledge) like to make a sample code? i can expand it to mu wishes when i have a sample code but it`s really hard for me to start from scratch. i can do

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mark
do you have a special timeout extension installed? cause that`s not working for me. 2007/3/23, Mateusz Misiorny [EMAIL PROTECTED]: On 3/23/07, Mark [EMAIL PROTECTED] wrote: ehm.. my javascript knowledge is kinda limited ^_^ would you (or anyone that has some javascript knowledge) like to

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-23 Thread Mark
oke.. timeout is a default javascript function :P i`m getting somewhere now. i will post my results when i`m getting close to the final result. or i will put it online somewhere.. i think this can be verry usefull for others aswell. 2007/3/23, Mark [EMAIL PROTECTED]: do you have a special

Re: [jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-22 Thread Benjamin Sterling
I would assume you would put a set timeout function on it somewhere and then have the the form submit and process thru ajax, and when the response from the server is complete, you will append the new thumbnail image to the page. -- Benjamin Sterling http://www.KenzoMedia.com

[jQuery] Upload image, make thumbnail all on the fly.. possible?

2007-03-22 Thread Mark
Hey, take a look at this image: http://img393.imageshack.us/my.php?image=magedbimageuploadcopylc6.png is it possible to make that with jquery? if it is.. could someone help me making it? the automitically uploading is possible and the rest is just php so i think it`s possible but i don`t know