Ask a Question related to ASP.NET General, Design and Development.
-
Harley #1
Image resampling in VB/ASP.NET
is there any way to manipulate images in vb.net in asp.net?
i have a 280x280pixel jpg file, and want to display it in 2 sizes, 280x280
and 70x70... without having to create 2 files... (actually there are some
100s files, dont want to duplicate them...)
any way to use an image class or something to resample the image and get the
stream as a jpg file displayed on an aspx file?
i know there were com components for ASP to do this, like ASPImage, but
cannot install custom components on my server.
Harley Guest
-
resampling and resizing
If anyone out there could help us out, we would appreciate it. We have a photo of 20"x 13" at 72 dpi. We want to resize it smaller and up the dpi... -
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... -
Can I take a small (320x240), blurry image, and make it a clear, large image?
Just wondering if there is an easy way to do this? I'm sure it won't be perfect cause photoshop can only work with what's there, but maybe it can... -
Photoshop 7.0 Sliced Image Causes DreamWeaver MX Table To add 1 Pixel gif image!
Hello, I sliced my page in Photoshop 7 and did a "Save Optimized" to HTML. I opened the page in Dreamweaver MX and it looks find. I want the TABLE... -
400VC, grain, and resampling!
Well the first image looks exactly what I saw when viewing the 4000 DPI, 56mb TIF file. The dimensions were approximately 5400x3085. It was very... -
Krissy #2
Re: Image resampling in VB/ASP.NET
"Harley" <harleyobrien%40hotmail.com> wrote in message
news:#5caeeJXDHA.2464@TK2MSFTNGP09.phx.gbl...the> is there any way to manipulate images in vb.net in asp.net?
> i have a 280x280pixel jpg file, and want to display it in 2 sizes, 280x280
> and 70x70... without having to create 2 files... (actually there are some
> 100s files, dont want to duplicate them...)
> any way to use an image class or something to resample the image and getYou probably want something like this:> stream as a jpg file displayed on an aspx file?
> i know there were com components for ASP to do this, like ASPImage, but
> cannot install custom components on my server.
>
>
[url]http://aspalliance.com/chrisg/default.asp?article=130[/url]
Use the single thumbnail browser and adapt to code to take in parameters for
the sizes you want.
I used something similar for a photo gallery site, it works fine and the
images look really good :)
But be careful with .bmp and .png files, they can have problems displaying
on a page.
See [url]http://aspalliance.com/chrisg/default.asp?article=152[/url] for more info.
Krissy Guest
-
Krissy #3
Re: Image resampling in VB/ASP.NET
"Krissy" <krissi___@hotmail.com> wrote in message
news:3f31e25c$1@quokka.wn.com.au...280x280>
> "Harley" <harleyobrien%40hotmail.com> wrote in message
> news:#5caeeJXDHA.2464@TK2MSFTNGP09.phx.gbl...> > is there any way to manipulate images in vb.net in asp.net?
> > i have a 280x280pixel jpg file, and want to display it in 2 sizes,some> > and 70x70... without having to create 2 files... (actually there arefor> the> > 100s files, dont want to duplicate them...)
> > any way to use an image class or something to resample the image and get>> > stream as a jpg file displayed on an aspx file?
> > i know there were com components for ASP to do this, like ASPImage, but
> > cannot install custom components on my server.
> >
> >
> You probably want something like this:
>
> [url]http://aspalliance.com/chrisg/default.asp?article=130[/url]
>
> Use the single thumbnail browser and adapt to code to take in parametersOn a side note I was initially using an image component, but stopped as the> the sizes you want.
>
> I used something similar for a photo gallery site, it works fine and the
> images look really good :)
>
> But be careful with .bmp and .png files, they can have problems displaying
> on a page.
>
> See [url]http://aspalliance.com/chrisg/default.asp?article=152[/url] for more info.
>
>
company never replied to our emails about the product, so a bit of searching
around saved us $500 for a component by doing the coding ourselves :)
Krissy Guest
-
Kevin Spencer #4
Re: Image resampling in VB/ASP.NET
You can do anything with ASP.Net that you can do with any other programming
technology. To manipulate images, use the System.Drawing namespace.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Complex things are made up of
lots of simple things.
"Harley" <harleyobrien%40hotmail.com> wrote in message
news:%235caeeJXDHA.2464@TK2MSFTNGP09.phx.gbl...the> is there any way to manipulate images in vb.net in asp.net?
> i have a 280x280pixel jpg file, and want to display it in 2 sizes, 280x280
> and 70x70... without having to create 2 files... (actually there are some
> 100s files, dont want to duplicate them...)
> any way to use an image class or something to resample the image and get> stream as a jpg file displayed on an aspx file?
> i know there were com components for ASP to do this, like ASPImage, but
> cannot install custom components on my server.
>
>
Kevin Spencer Guest



Reply With Quote

