Ask a Question related to ASP.NET General, Design and Development.
-
Will #1
manipulating an image file in asp.net with C#
I've got a file upload happening to upload an image file
to the server. During this process I want to also create a
thumbnail of the image in the same directory, and adjust
the size of the image if it's too large horizonally or
vertically. I am using an httpfilescollection to gain
access to the file I uploaded, but I can't figure out
where to go from there.
Since this is in ASP.net I'm out of luck with the graphics
class in GDI+.
Any suggestions?
Will Guest
-
Manipulating XML File
Assume you're working with a vendor that doesn't understand web services and implements their version of a web service solution that only returns... -
image is set back when another image is pasted in file
I have a file that when I paste an image on a layer above it, it gets pushed back and winds up behind the next layer. What can cause this to occur... -
Help with manipulating a string.
I've got a multiline text box that will feed the ^M at the end of each line. I want to capture it into a single line (which is done), but how do I... -
How To Browse for an image file and save it to image server folder
I trying to browse for an image file and save it to the server image folder. in other words , upload the picture. I tried html and aspx.net... -
how to upload an image selected from html file to flash file?
Hello, I have one html file and a flash file. In html file, it is functioning like choosing a Tshirt to design, then how to load that Tshirt picture... -
Jos #2
Re: manipulating an image file in asp.net with C#
Will wrote:
There are plenty of samples of this to be found on the net.> I've got a file upload happening to upload an image file
> to the server. During this process I want to also create a
> thumbnail of the image in the same directory, and adjust
> the size of the image if it's too large horizonally or
> vertically. I am using an httpfilescollection to gain
> access to the file I uploaded, but I can't figure out
> where to go from there.
>
> Since this is in ASP.net I'm out of luck with the graphics
> class in GDI+.
>
> Any suggestions?
E.g.
[url]http://www.aspalliance.com/chrisg/tools/view-image3.asp[/url]
Custom controls with this functionality can be found at:
[url]http://www.asp.net/ControlGallery/default.aspx?Category=8&tabindex=2[/url]
Also try Google with the keywords "asp.net" and "thumbnails".
--
Jos Branders
Jos Guest
-
Jerry III #3
Re: manipulating an image file in asp.net with C#
Why exactly can't you use GDI+ on a server? It's actually easier then on the
client side as you have complete control over the server (and can guarantee
that .NET framework and GDI+ is installed).
Jerry
"Will" <wswelch@comcast.net> wrote in message
news:00a501c35f06$1ea38020$a001280a@phx.gbl...> I've got a file upload happening to upload an image file
> to the server. During this process I want to also create a
> thumbnail of the image in the same directory, and adjust
> the size of the image if it's too large horizonally or
> vertically. I am using an httpfilescollection to gain
> access to the file I uploaded, but I can't figure out
> where to go from there.
>
> Since this is in ASP.net I'm out of luck with the graphics
> class in GDI+.
>
> Any suggestions?
Jerry III Guest



Reply With Quote

