New cool software

  • Thread starter Thread starter Filipe Freire
  • Start date Start date
Hi Philipe,

Because you did send this to the VB.language group I think this was a
question how to do this with VB.net.
To make a thumbnail with VB.language you can do in its most simple way:
\\\
Imports System.Drawing.Imaging

Dim basicImage As Image = Image.FromFile("Pathname")
Dim thumbNail As Image = _
basicImage.GetThumbnailImage(100, 100, Nothing, New IntPtr)
thumbNail.Save("Pathname")
///
I hope this helps,

Cor
 
"It's much better to use the tool (ImageBatch.NET)," says Philipe, the
marketing employee from DualDot.net that ignores the announcement groups and
SPAMs every .NET group via a massive cross post.

Oh, wait! He says he found the tool on the net, so this could not be a
marketing ploy. My bad! ;->

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
* "Cor said:
Because you did send this to the VB.language group I think this was a
question how to do this with VB.net.

I think it was an ad.
 
Back
Top