Is it possible to use a dynamic img-tag inn fck? When I insert a image, the fck create an image- tag like
<img src="/image/file.jpg" width="200" height="100" border="0">
I want it do create
<img src="showimage.php?file=file.jpg&width=200&height=100" border="0">
The showimage.php scale down a large image to the spesified width and height in the URL above.
The problem isn't really to use the showimage.php, but to get the width and height values from the image-property-popup and in to the img-tag.
And also be able to edit to width and heigth values in the img-tag by draging the corner of the image to change the size.
<img src="/image/file.jpg" width="200" height="100" border="0">
I want it do create
<img src="showimage.php?file=file.jpg&width=200&height=100" border="0">
The showimage.php scale down a large image to the spesified width and height in the URL above.
The problem isn't really to use the showimage.php, but to get the width and height values from the image-property-popup and in to the img-tag.
And also be able to edit to width and heigth values in the img-tag by draging the corner of the image to change the size.

Re: using showimage.php with width and height- parameter?