avr. 18

If you need to create a thumbnial on the fly of a given image, it is quite easy to do in C# as the Image object include a GetThumbnailImage method.

using ( Image originalImage = Image.FromFile(@"c:\temp\originalimage.jpg") )
{
   int newWidth = originalImage.Width / 2;
   int newHeight = originalImage.Height / 2;
   Image resizedImage = originalImage.GetThumbnailImage(newWidth, newHeight, null, IntPtr.Zero);
   resizedImage.Save(@"c:\temp\resizedimage.jpg");
}

This method works fine, but may in some cases produce images of bad quality, spacially when dealing with GIF or PNG with transparency. Indeed, it will generate a Black background behind the image. You could correct this problem by handling the resize manually : 

using ( Image originalImage = Image.FromFile(@"c:\temp\originalimage.jpg") )
{
   int newWidth = originalImage.Width / 2;
   int newHeight = originalImage.Height / 2;

   Image resizedImage = new Bitmap(newWidth, newHeight);
   using ( Graphics g = Graphics.FromImage(resizedImage) )
   {
      g.InterpolationMode = InterpolationMode.HighQualityBicubic;
      g.FillRectangle(Brushes.White, 0, 0, newWidth, newHeight);
      g.DrawImage(originalImage, 0, 0, newWidth, newHeight);
   }
   resizedImage.Save(@"c:\temp\resizedimage.jpg");
}

The resulting image will be a bit bigger (size in octet) but will handle correctly any type of image.

Commentaires

Fabian Vilers

Posted on lundi, 18 avril 2011 14:56

Interesting, I was doing something similar but without using a Graphic object (thus, without specifying the InterpolationMode).

telecharger video youtube

Posted on mercredi, 27 novembre 2013 08:16

I tout le temps utilisé pour étude morceau d'écriture dans les journaux, mais maintenant que je suis un utilisateur de Internet ainsi donc à partir de maintenant j'utilise net pour articles, grâce à Internet.

Here is my homepage ...  telecharger video youtube - http://season2.pmpcafe.com/bbs/board/290431

candy crush cheat

Posted on dimanche, 8 décembre 2013 13:13

Thankfulness to my father who shared with me regarding this web site, this web site is really remarkable.

Also visit my weblog:  candy crush cheat - http://daviddsiiekyjhwg.wordpressy.pl/?p=4

japandbc.com

Posted on samedi, 14 décembre 2013 05:28

Aw, this was an exceptionally nice post. Taking the time and actual effort to generate a good article… but what can I say… I hesitate a whole lot and don't manage to get anything done.

Have a look at my web blog - www.fflhow.com/.../ ( japandbc.com - http://japandbc.com/bbs/?document_srl=423938 )

Survival Books

Posted on jeudi, 3 avril 2014 15:34

I for all time emailed this blog post page to all my friends, since if like to read it afterward my friends will too.

Feel free to visit my homepage  Survival Books - http://www.survivalbooks.cielfrancais.com/

Ajouter un commentaire




biuquote
  • Commentaire
  • Aperçu immédiat
Loading