[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-28 Thread Yansky
You could do it with Canvas and a directX filter. Something like this: http://paste.css-standards.org/15230/view On Jun 27, 5:50 am, cfdvlpr [EMAIL PROTECTED] wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not impossible to do.

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread cfdvlpr
I've taken a look at swfIR and that seems to work. However, I'm not sure that I can change the src of the image with Jquery and have it still work (without a page refresh). Please correct me if I am wrong. I'm developing in Coldfusion, by the way. But, I don't think I can use a server side

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread Scott Trudeau
I'm developing in Coldfusion, by the way. But, I don't think I can use a server side script for this as I need it to update without a page refresh... There are a number of ways you could do this with a .ajax or similar call. E.g., let's say you write a coldfusion script that accepts as

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread weepy
maybe check this out : http://www.netzgesta.de/instant/ *...( On Jun 27, 4:24 pm, Scott Trudeau [EMAIL PROTECTED] wrote: I'm developing in Coldfusion, by the way. But, I don't think I can use a server side script for this as I need it to update without a page refresh... There are a

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Su
swfIR? http://www.swfir.com/ Not jQuery at all, but if you're asking for one effect, you're probably going to end up looking for others, so... On 6/26/07, cfdvlpr [EMAIL PROTECTED] wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Matt Stith
Thats not exactly something you want javascript doing, thats more of a server-side thing. Are you using php? On 6/26/07, cfdvlpr [EMAIL PROTECTED] wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not impossible to do.

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Su [EMAIL PROTECTED] wrote: swfIR? http://www.swfir.com/ swfIR, IIRC, is geared towards text, though. The only way I know of to do image rotation in JavaScript is with canvas[1] or SVG[2], both of which don't have enough browser support to make the effort worthwhile (assuming

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
JavaScript is with canvas[1] or SVG[2], both of which don't have enough browser support to Huh? Canvas works on IE6 (with excanvas), IE7, FF since 1.x, Safari and Opera. What other browsers are you looking for? --Erik

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
Since when does IE have native canvas support? On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: JavaScript is with canvas[1] or SVG[2], both of which don't have enough browser support to Huh? Canvas works on IE6 (with excanvas), IE7, FF since 1.x, Safari and Opera. What other browsers are

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Ganeshji Marwaha
r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Since when does IE have native canvas support? On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: JavaScript is with canvas[1] or SVG[2], both of which don't have

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Scott Trudeau
Reportedly, this script: http://sourceforge.net/projects/excanvas Replicates canvass support in IE6. Anyone use it? Does it work well? Scott On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Since when does IE have native canvas support? On 6/26/07, Erik Beeson [EMAIL PROTECTED]

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Brandon Aaron
Check out the excanvas project: http://excanvas.sourceforge.net/ -- Brandon Aaron On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Since when does IE have native canvas support? On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: JavaScript is with canvas[1] or SVG[2], both of which

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread weepy
i've tried excanvas and it works very well indeed - amazing in fact when you think what its doing. it runs a bit slower on ie check some demos here : http://labs.parkerfox.co.uk/excanvas/examples/

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser support for the effort to be worthwhile (ON PUBLIC FACING WEB SITES). If you can convince your IE

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
Replicates canvass support in IE6. Anyone use it? Does it work well? Yes I do. Yes it does. No clipping, no patters, but all the basic stuff is there and works pretty well. You heard it here first: canvas will be the next big thing, like AJAX was. XHR was around for a long time before the

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser support for the effort to be worthwhile (ON PUBLIC FACING WEB SITES). If you can convince your IE users to download and install excanvas, then more power

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Scott Trudeau
It's a javascript script, not a plug-in. On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 6/26/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser support

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: You misunderstand. It's a javascript file that you include on your page just like jQuery. It's no more installed than jQuery. Just fine for general public use. Well then, I stand corrected. -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Su
On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 6/26/07, Su [EMAIL PROTECTED] wrote: swfIR? http://www.swfir.com/ swfIR, IIRC, is geared towards text, though. The only way I know of to do image rotation in JavaScript is with That's sIFR: http://www.mikeindustries.com/sifr/ The

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread DaveG
Looks like example 3 does the rotating you seek... weepy wrote: i've tried excanvas and it works very well indeed - amazing in fact when you think what its doing. it runs a bit slower on ie check some demos here : http://labs.parkerfox.co.uk/excanvas/examples/