Tag Archives: rotate image
C# || How To Resize & Rotate Image, Convert Image To Byte Array, Change Image Format, & Fix Image Orientation Using C#

The following is a module with functions which demonstrates how to resize an image, rotate an image to a specific angle, convert an image to a byte array, change an image format, and fix an image orientation Using C#.
Contents
1. Overview
2. Resize & Rotate - Image
3. Resize & Rotate - Byte Array
4. Resize & Rotate - Memory Stream
5. Convert Image To Byte Array
6. Change Image Format
7. Fix Image Orientation
8. Utils Namespace
9. More Examples
1. Overview
To use the functions in this module, make sure you have a reference to ‘System.Drawing‘ in your project.
One way to do this is, in your Solution Explorer (where all the files are shown with your project), right click the ‘References‘ folder, click ‘Add References‘, then type ‘System.Drawing‘ in the search box, and add a reference to System.Drawing in the results Tab.
Note: Don’t forget to include the ‘Utils Namespace‘ before running the examples!
2. Resize & Rotate – Image
The example below demonstrates the use of ‘Utils.Image.Extensions.Resize‘ and ‘Utils.Image.Extensions.Rotate‘ to resize and rotate an image object.
Resizing and rotating an image returns a newly created image object.
123456789101112
// Resize & Rotate - Image using Utils.Image; var path = $@"path-to-file\file.extension";var image = System.Drawing.Image.FromFile(path); // Resize image 500x500var resized = image.Resize(new System.Drawing.Size(500, 500)); // Rotate 90 degrees counter clockwisevar rotated = image.Rotate(-90);
3. Resize & Rotate – Byte Array
The example below demonstrates the use of ‘Utils.Image.Extensions.Resize‘ and ‘Utils.Image.Extensions.Rotate‘ to resize and rotate a byte array.
Resizing and rotating an image returns a newly created image object.
12345678910
// Resize & Rotate - Byte Array // Read file to byte arraybyte[] bytes; // Resize image 800x800var resized = Utils.Image.Extensions.Resize(bytes, new System.Drawing.Size(800, 800)); // Rotate 180 degrees clockwisevar rotated = Utils.Image.Extensions.Rotate(bytes, 180);
4. Resize & Rotate – Memory Stream
The example below demonstrates the use of ‘Utils.Image.Resize‘ and ‘Utils.Image.Rotate‘ to resize and rotate a memory stream.
Resizing and rotating an image returns a newly created image object.
12345678910
// Resize & Rotate - Memory Stream // Read file to memory streamvar stream = new System.IO.MemoryStream(); // Resize image 2000x2000var resized = Utils.Image.Extensions.Resize(stream, new System.Drawing.Size(2000, 2000)); // Rotate 360 degreesvar rotated = Utils.Image.Extensions.Rotate(stream, 360);
5. Convert Image To Byte Array
The example below demonstrates the use of ‘Utils.Image.Extensions.ToArray‘ to convert an image object to a byte array.
The optional function parameter allows you to specify the image format.
123456789
// Convert Image To Byte Array using Utils.Image; var path = $@"path-to-file\file.extension"var image = System.Drawing.Image.FromFile(path); // Convert image to byte arrayvar bytes = image.ToArray();
6. Change Image Format
The example below demonstrates the use of ‘Utils.Image.Extensions.ConvertFormat‘ to convert the image object raw format to another format.
Converting an images format returns a newly created image object.
123456789
// Change Image Format using Utils.Image; var path = $@"path-to-file\file.extension";var image = System.Drawing.Image.FromFile(path); // Convert image to another formatvar newImage = image.ConvertFormat(System.Drawing.Imaging.ImageFormat.Png);
7. Fix Image Orientation
The example below demonstrates the use of ‘Utils.Image.Extensions.FixOrientation‘ to update the image object to reflect its Exif orientation.
When you view an image in a Photo Viewer, it automatically corrects image orientation if it has Exif orientation data.
‘Utils.Image.Extensions.FixOrientation‘ makes it so the loaded image object reflects the correct orientation when rendered according to its Exif orientation data.
123456789
// Fix Image Orientation using Utils.Image; var path = $@"path-to-file\file.extension";var image = System.Drawing.Image.FromFile(path); // Correct the image object to reflect its Exif orientationimage.FixOrientation();
8. Utils Namespace
The following is the Utils Namespace. Include this in your project to start using!
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
// ============================================================================// Author: Kenneth Perkins// Date: May 9, 2021// Taken From: http://programmingnotes.org/// File: Utils.cs// Description: Handles general utility functions// ============================================================================using System;using System.Collections.Generic;using System.Linq; namespace Utils { namespace Image { public static class Extensions { /// <summary> /// Resizes an image to a specified size /// </summary> /// <param name="source">The image to resize</param> /// <param name="desiredSize">The size to resize the image to</param> /// <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> /// <returns>A new image resized to the specified size</returns> public static System.Drawing.Image Resize(this System.Drawing.Image source, System.Drawing.Size desiredSize, bool preserveAspectRatio = true) { if (desiredSize.IsEmpty) { throw new ArgumentException("Image size cannot be empty", nameof(desiredSize)); } var resizedWidth = desiredSize.Width; var resizedHeight = desiredSize.Height; var sourceFormat = source.RawFormat; source.FixOrientation(); if (preserveAspectRatio) { var sourceWidth = Math.Max(source.Width, 1); var sourceHeight = Math.Max(source.Height, 1); var resizedPercentWidth = desiredSize.Width / (double)sourceWidth; var resizedPercentHeight = desiredSize.Height / (double)sourceHeight; var resizedPercentRatio = Math.Min(resizedPercentHeight, resizedPercentWidth); resizedWidth = System.Convert.ToInt32(sourceWidth * resizedPercentRatio); resizedHeight = System.Convert.ToInt32(sourceHeight * resizedPercentRatio); } var resizedImage = new System.Drawing.Bitmap(resizedWidth, resizedHeight); resizedImage.SetResolution(source.HorizontalResolution, source.VerticalResolution); using (var graphicsHandle = System.Drawing.Graphics.FromImage(resizedImage)) { graphicsHandle.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; graphicsHandle.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality; graphicsHandle.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality; graphicsHandle.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; graphicsHandle.DrawImage(source, 0, 0, resizedWidth, resizedHeight); } if (!sourceFormat.Equals(resizedImage.RawFormat)) { resizedImage = (System.Drawing.Bitmap)resizedImage.ConvertFormat(sourceFormat); } return resizedImage; } /// <summary> /// Resizes an image to a specified size /// </summary> /// <param name="stream">The stream of the image to resize</param> /// <param name="desiredSize">The size to resize the image to</param> /// <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> /// <returns>A new image resized to the specified size</returns> public static System.Drawing.Image Resize(System.IO.Stream stream, System.Drawing.Size desiredSize, bool preserveAspectRatio = true) { System.Drawing.Image image; using (var original = StreamToImage(stream)) { image = Resize(original, desiredSize, preserveAspectRatio: preserveAspectRatio); } return image; } /// <summary> /// Resizes an image to a specified size /// </summary> /// <param name="bytes">The byte array of the image to resize</param> /// <param name="desiredSize">The size to resize the image to</param> /// <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> /// <returns>A new image resized to the specified size</returns> public static System.Drawing.Image Resize(byte[] bytes, System.Drawing.Size desiredSize, bool preserveAspectRatio = true) { System.Drawing.Image image; using (var original = BytesToImage(bytes)) { image = Resize(original, desiredSize, preserveAspectRatio: preserveAspectRatio); } return image; } /// <summary> /// Rotates an image to a specified angle /// </summary> /// <param name="source">The image to resize</param> /// <param name="angle">The angle to rotate the image</param> /// <returns>A new image rotated to the specified angle</returns> public static System.Drawing.Image Rotate(this System.Drawing.Image source, decimal angle) { var sourceFormat = source.RawFormat; source.FixOrientation(); var alpha = angle; while (alpha < 0) { alpha += 360; } var gamma = 90M; var beta = 180 - angle - gamma; var c1 = source.Height; var a1 = Math.Abs((c1 * Math.Sin((double)alpha * Math.PI / 180))); var b1 = Math.Abs((c1 * Math.Sin((double)beta * Math.PI / 180))); var c2 = source.Width; var a2 = Math.Abs((c2 * Math.Sin((double)alpha * Math.PI / 180))); var b2 = Math.Abs((c2 * Math.Sin((double)beta * Math.PI / 180))); var width = System.Convert.ToInt32(b2 + a1); var height = System.Convert.ToInt32(b1 + a2); var rotatedImage = new System.Drawing.Bitmap(width, height); rotatedImage.SetResolution(source.HorizontalResolution, source.VerticalResolution); using (var graphicsHandle = System.Drawing.Graphics.FromImage(rotatedImage)) { graphicsHandle.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; graphicsHandle.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality; graphicsHandle.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality; graphicsHandle.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; graphicsHandle.TranslateTransform(rotatedImage.Width / 2, rotatedImage.Height / 2); graphicsHandle.RotateTransform((float)angle); graphicsHandle.TranslateTransform(-rotatedImage.Width / 2, -rotatedImage.Height / 2); graphicsHandle.DrawImage(source, new System.Drawing.Point((width - source.Width) / 2, (height - source.Height) / 2)); } if (!sourceFormat.Equals(rotatedImage.RawFormat)) { rotatedImage = (System.Drawing.Bitmap)rotatedImage.ConvertFormat(sourceFormat); } return rotatedImage; } /// <summary> /// Rotates an image to a specified angle /// </summary> /// <param name="stream">The stream of the image to resize</param> /// <param name="angle">The angle to rotate the image</param> /// <returns>A new image rotated to the specified angle</returns> public static System.Drawing.Image Rotate(System.IO.Stream stream, decimal angle) { System.Drawing.Image image; using (var original = StreamToImage(stream)) { image = Rotate(original, angle); } return image; } /// <summary> /// Rotates an image to a specified angle /// </summary> /// <param name="bytes">The byte array of the image to rotate</param> /// <param name="angle">The angle to rotate the image</param> /// <returns>A new image rotated to the specified angle</returns> public static System.Drawing.Image Rotate(byte[] bytes, decimal angle) { System.Drawing.Image image; using (var original = BytesToImage(bytes)) { image = Rotate(original, angle); } return image; } /// <summary> /// Converts an image to a byte array /// </summary> /// <param name="source">The image to convert</param> /// <param name="format">The format the byte array image should be converted to</param> /// <returns>The image as a byte array</returns> public static byte[] ToArray(this System.Drawing.Image source, System.Drawing.Imaging.ImageFormat format = null) { if (format == null) { format = source.ResolvedFormat(); if (format.Equals(System.Drawing.Imaging.ImageFormat.MemoryBmp)) { format = System.Drawing.Imaging.ImageFormat.Png; } } byte[] bytes; using (var stream = new System.IO.MemoryStream()) { source.Save(stream, format); bytes = stream.ToArray(); } return bytes; } /// <summary> /// Converts an image to a different ImageFormat /// </summary> /// <param name="source">The image to convert</param> /// <param name="format">The format the image should be changed to</param> /// <returns>The new image converted to the specified format</returns> public static System.Drawing.Image ConvertFormat(this System.Drawing.Image source, System.Drawing.Imaging.ImageFormat format) { var bytes = source.ToArray(format); var image = BytesToImage(bytes); return image; } /// <summary> /// Returns the resolved static image format from an images RawFormat /// </summary> /// <param name="source">The image to get the format from</param> /// <returns>The resolved image format</returns> public static System.Drawing.Imaging.ImageFormat ResolvedFormat(this System.Drawing.Image source) { var format = FindImageFormat(source.RawFormat); return format; } /// <summary> /// Returns all the ImageFormats as an IEnumerable /// </summary> /// <returns>All the ImageFormats as an IEnumerable</returns> public static IEnumerable<System.Drawing.Imaging.ImageFormat> GetImageFormats() { var formats = typeof(System.Drawing.Imaging.ImageFormat) .GetProperties(System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.Public) .Select(p => (System.Drawing.Imaging.ImageFormat)p.GetValue(null, null)); return formats; } /// <summary> /// Returns the static image format from a RawFormat /// </summary> /// <param name="raw">The ImageFormat to get info from</param> /// <returns>The resolved image format</returns> public static System.Drawing.Imaging.ImageFormat FindImageFormat(System.Drawing.Imaging.ImageFormat raw) { var format = GetImageFormats().FirstOrDefault(x => raw.Equals(x)); if (format == null) { format = System.Drawing.Imaging.ImageFormat.Png; } return format; } /// <summary> /// Update the image to reflect its exif orientation /// </summary> /// <param name="image">The image to update</param> public static void FixOrientation(this System.Drawing.Image image) { var orientationId = 274; if (!image.PropertyIdList.Contains(orientationId)) { return; } var orientation = BitConverter.ToInt16(image.GetPropertyItem(orientationId).Value, 0); var rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipNone; switch (orientation) { case 1: // Image is correctly oriented rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipNone; break; case 2: // Image has been mirrored horizontally rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipX; break; case 3: // Image has been rotated 180 degrees rotateFlip = System.Drawing.RotateFlipType.Rotate180FlipNone; break; case 4: // Image has been mirrored horizontally and rotated 180 degrees rotateFlip = System.Drawing.RotateFlipType.Rotate180FlipX; break; case 5: // Image has been mirrored horizontally and rotated 90 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate90FlipX; break; case 6: // Image has been rotated 90 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate90FlipNone; break; case 7: // Image has been mirrored horizontally and rotated 270 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate270FlipX; break; case 8: // Image has been rotated 270 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate270FlipNone; break; } if (rotateFlip != System.Drawing.RotateFlipType.RotateNoneFlipNone) { image.RotateFlip(rotateFlip); } } /// <summary> /// Returns an image from a byte array /// </summary> /// <param name="bytes">The bytes representing the image</param> /// <returns>The image from the byte array</returns> public static System.Drawing.Image BytesToImage(byte[] bytes) { return StreamToImage(new System.IO.MemoryStream(bytes)); } /// <summary> /// Returns an image from a stream /// </summary> /// <param name="stream">The stream representing the image</param> /// <returns>The image from the stream</returns> public static System.Drawing.Image StreamToImage(System.IO.Stream stream) { return System.Drawing.Image.FromStream(stream); } } }}// http://programmingnotes.org/
9. More Examples
Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!
123456789101112131415161718192021222324252627282930313233343536373839404142434445
// ============================================================================// Author: Kenneth Perkins// Date: May 9, 2021// Taken From: http://programmingnotes.org/// File: Program.cs// Description: The following demonstrates the use of the Utils Namespace// ============================================================================using System;using System.Diagnostics;using Utils.Image; public class Program { static void Main(string[] args) { try { var path = ""; // Image var image = System.Drawing.Image.FromFile(path); var resized = image.Resize(new System.Drawing.Size(500, 500)); //var rotated = image.Rotate(-90); // Byte //byte[] bytes; //var resized = Utils.Image.Extensions.Resize(bytes, new System.Drawing.Size(800, 800)); //var rotated = Utils.Image.Extensions.Rotate(bytes, 180); // Stream //var stream = new System.IO.MemoryStream(); //var resized = Utils.Image.Extensions.Resize(stream, new System.Drawing.Size(2000, 2000)); //var rotated = Utils.Image.Extensions.Rotate(stream, 360); var newPath = ""; resized.Save(newPath); } catch (Exception ex) { Display(ex.ToString()); } finally { Console.ReadLine(); } } static void Display(string message) { Console.WriteLine(message); Debug.Print(message); }}// http://programmingnotes.org/
QUICK NOTES:
The highlighted lines are sections of interest to look out for.
The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.
VB.NET || How To Resize & Rotate Image, Convert Image To Byte Array, Change Image Format, & Fix Image Orientation Using VB.NET

The following is a module with functions which demonstrates how to resize an image, rotate an image to a specific angle, convert an image to a byte array, change an image format, and fix an image orientation Using VB.NET.
Contents
1. Overview
2. Resize & Rotate - Image
3. Resize & Rotate - Byte Array
4. Resize & Rotate - Memory Stream
5. Convert Image To Byte Array
6. Change Image Format
7. Fix Image Orientation
8. Utils Namespace
9. More Examples
1. Overview
To use the functions in this module, make sure you have a reference to ‘System.Drawing‘ in your project.
One way to do this is, in your Solution Explorer (where all the files are shown with your project), right click the ‘References‘ folder, click ‘Add References‘, then type ‘System.Drawing‘ in the search box, and add a reference to System.Drawing in the results Tab.
Note: Don’t forget to include the ‘Utils Namespace‘ before running the examples!
2. Resize & Rotate – Image
The example below demonstrates the use of ‘Utils.Image.Resize‘ and ‘Utils.Image.Rotate‘ to resize and rotate an image object.
Resizing and rotating an image returns a newly created image object.
123456789101112
' Resize & Rotate - Image Imports Utils.Image Dim path = $"path-to-file\file.extension"Dim image = System.Drawing.Image.FromFile(path) ' Resize image 500x500Dim resized = image.Resize(New System.Drawing.Size(500, 500)) ' Rotate 90 degrees counter clockwiseDim rotated = image.Rotate(-90)
3. Resize & Rotate – Byte Array
The example below demonstrates the use of ‘Utils.Image.Resize‘ and ‘Utils.Image.Rotate‘ to resize and rotate a byte array.
Resizing and rotating an image returns a newly created image object.
12345678910
' Resize & Rotate - Byte Array ' Read file to byte arrayDim bytes As Byte() ' Resize image 800x800Dim resized = Utils.Image.Resize(bytes, New System.Drawing.Size(800, 800)) ' Rotate 180 degrees clockwiseDim rotated = Utils.Image.Rotate(bytes, 180)
4. Resize & Rotate – Memory Stream
The example below demonstrates the use of ‘Utils.Image.Resize‘ and ‘Utils.Image.Rotate‘ to resize and rotate a memory stream.
Resizing and rotating an image returns a newly created image object.
12345678910
' Resize & Rotate - Memory Stream ' Read file to memory streamDim stream As New System.IO.MemoryStream() ' Resize image 2000x2000Dim resized = Utils.Image.Resize(stream, New System.Drawing.Size(2000, 2000)) ' Rotate 360 degreesDim rotated = Utils.Image.Rotate(stream, 360)
5. Convert Image To Byte Array
The example below demonstrates the use of ‘Utils.Image.ToArray‘ to convert an image object to a byte array.
The optional function parameter allows you to specify the image format.
123456789
' Convert Image To Byte Array Imports Utils.Image Dim path = $"path-to-file\file.extension"Dim image = System.Drawing.Image.FromFile(path) ' Convert image to byte arrayDim bytes = image.ToArray()
6. Change Image Format
The example below demonstrates the use of ‘Utils.Image.ConvertFormat‘ to convert the image object raw format to another format.
Converting an images format returns a newly created image object.
123456789
' Change Image Format Imports Utils.Image Dim path = $"path-to-file\file.extension"Dim image = System.Drawing.Image.FromFile(path) ' Convert image to another formatDim newImage = image.ConvertFormat(System.Drawing.Imaging.ImageFormat.Png)
7. Fix Image Orientation
The example below demonstrates the use of ‘Utils.Image.FixOrientation‘ to update the image object to reflect its Exif orientation.
When you view an image in a Photo Viewer, it automatically corrects image orientation if it has Exif orientation data.
‘Utils.Image.FixOrientation‘ makes it so the loaded image object reflects the correct orientation when rendered according to its Exif orientation data.
123456789
' Fix Image Orientation Imports Utils.Image Dim path = $"path-to-file\file.extension"Dim image = System.Drawing.Image.FromFile(path) ' Correct the image object to reflect its Exif orientationimage.FixOrientation
8. Utils Namespace
The following is the Utils Namespace. Include this in your project to start using!
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
' ============================================================================' Author: Kenneth Perkins' Date: Nov 9, 2020' Taken From: http://programmingnotes.org/' File: Utils.vb' Description: Handles general utility functions' ============================================================================Option Strict OnOption Explicit On Namespace Global.Utils Namespace Image Public Module modImage ''' <summary> ''' Resizes an image to a specified size ''' </summary> ''' <param name="source">The image to resize</param> ''' <param name="desiredSize">The size to resize the image to</param> ''' <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> ''' <returns>A new image resized to the specified size</returns> <Runtime.CompilerServices.Extension()> Public Function Resize(source As System.Drawing.Image, desiredSize As System.Drawing.Size, Optional preserveAspectRatio As Boolean = True) As System.Drawing.Image If desiredSize.IsEmpty Then Throw New ArgumentException("Image size cannot be empty", NameOf(desiredSize)) End If Dim resizedWidth = desiredSize.Width Dim resizedHeight = desiredSize.Height Dim sourceFormat = source.RawFormat source.FixOrientation If preserveAspectRatio Then Dim sourceWidth = Math.Max(source.Width, 1) Dim sourceHeight = Math.Max(source.Height, 1) Dim resizedPercentWidth = desiredSize.Width / sourceWidth Dim resizedPercentHeight = desiredSize.Height / sourceHeight Dim resizedPercentRatio = Math.Min(resizedPercentHeight, resizedPercentWidth) resizedWidth = CInt(sourceWidth * resizedPercentRatio) resizedHeight = CInt(sourceHeight * resizedPercentRatio) End If Dim resizedImage = New System.Drawing.Bitmap(resizedWidth, resizedHeight) resizedImage.SetResolution(source.HorizontalResolution, source.VerticalResolution) Using graphicsHandle = System.Drawing.Graphics.FromImage(resizedImage) graphicsHandle.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic graphicsHandle.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality graphicsHandle.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality graphicsHandle.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality graphicsHandle.DrawImage(source, 0, 0, resizedWidth, resizedHeight) End Using If Not sourceFormat.Equals(resizedImage.RawFormat) Then resizedImage = CType(resizedImage.ConvertFormat(sourceFormat), System.Drawing.Bitmap) End If Return resizedImage End Function ''' <summary> ''' Resizes an image to a specified size ''' </summary> ''' <param name="stream">The stream of the image to resize</param> ''' <param name="desiredSize">The size to resize the image to</param> ''' <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> ''' <returns>A new image resized to the specified size</returns> Public Function Resize(stream As System.IO.Stream, desiredSize As System.Drawing.Size, Optional preserveAspectRatio As Boolean = True) As System.Drawing.Image Dim image As System.Drawing.Image Using original = StreamToImage(stream) image = Resize(original, desiredSize, preserveAspectRatio:=preserveAspectRatio) End Using Return image End Function ''' <summary> ''' Resizes an image to a specified size ''' </summary> ''' <param name="bytes">The byte array of the image to resize</param> ''' <param name="desiredSize">The size to resize the image to</param> ''' <param name="preserveAspectRatio">Determines if the aspect ratio should be preserved</param> ''' <returns>A new image resized to the specified size</returns> Public Function Resize(bytes As Byte(), desiredSize As System.Drawing.Size, Optional preserveAspectRatio As Boolean = True) As System.Drawing.Image Dim image As System.Drawing.Image Using original = BytesToImage(bytes) image = Resize(original, desiredSize, preserveAspectRatio:=preserveAspectRatio) End Using Return image End Function ''' <summary> ''' Rotates an image to a specified angle ''' </summary> ''' <param name="source">The image to resize</param> ''' <param name="angle">The angle to rotate the image</param> ''' <returns>A new image rotated to the specified angle</returns> <Runtime.CompilerServices.Extension()> Public Function Rotate(source As System.Drawing.Image, angle As Decimal) As System.Drawing.Image Dim sourceFormat = source.RawFormat source.FixOrientation Dim alpha = angle While alpha < 0 alpha += 360 End While Dim gamma = 90D Dim beta = 180 - angle - gamma Dim c1 = source.Height Dim a1 = Math.Abs((c1 * Math.Sin(alpha * Math.PI / 180))) Dim b1 = Math.Abs((c1 * Math.Sin(beta * Math.PI / 180))) Dim c2 = source.Width Dim a2 = Math.Abs((c2 * Math.Sin(alpha * Math.PI / 180))) Dim b2 = Math.Abs((c2 * Math.Sin(beta * Math.PI / 180))) Dim width = CInt(b2 + a1) Dim height = CInt(b1 + a2) Dim rotatedImage = New System.Drawing.Bitmap(width, height) rotatedImage.SetResolution(source.HorizontalResolution, source.VerticalResolution) Using graphicsHandle = System.Drawing.Graphics.FromImage(rotatedImage) graphicsHandle.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic graphicsHandle.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality graphicsHandle.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality graphicsHandle.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality graphicsHandle.TranslateTransform(rotatedImage.Width \ 2, rotatedImage.Height \ 2) graphicsHandle.RotateTransform(angle) graphicsHandle.TranslateTransform(-rotatedImage.Width \ 2, -rotatedImage.Height \ 2) graphicsHandle.DrawImage(source, New System.Drawing.Point((width - source.Width) \ 2, (height - source.Height) \ 2)) End Using If Not sourceFormat.Equals(rotatedImage.RawFormat) Then rotatedImage = CType(rotatedImage.ConvertFormat(sourceFormat), System.Drawing.Bitmap) End If Return rotatedImage End Function ''' <summary> ''' Rotates an image to a specified angle ''' </summary> ''' <param name="stream">The stream of the image to resize</param> ''' <param name="angle">The angle to rotate the image</param> ''' <returns>A new image rotated to the specified angle</returns> Public Function Rotate(stream As System.IO.Stream, angle As Decimal) As System.Drawing.Image Dim image As System.Drawing.Image Using original = StreamToImage(stream) image = Rotate(original, angle) End Using Return image End Function ''' <summary> ''' Rotates an image to a specified angle ''' </summary> ''' <param name="bytes">The byte array of the image to rotate</param> ''' <param name="angle">The angle to rotate the image</param> ''' <returns>A new image rotated to the specified angle</returns> Public Function Rotate(bytes As Byte(), angle As Decimal) As System.Drawing.Image Dim image As System.Drawing.Image Using original = BytesToImage(bytes) image = Rotate(original, angle) End Using Return image End Function ''' <summary> ''' Converts an image to a byte array ''' </summary> ''' <param name="source">The image to convert</param> ''' <param name="format">The format the byte array image should be converted to</param> ''' <returns>The image as a byte array</returns> <Runtime.CompilerServices.Extension()> Public Function ToArray(source As System.Drawing.Image, Optional format As System.Drawing.Imaging.ImageFormat = Nothing) As Byte() If format Is Nothing Then format = source.ResolvedFormat If format.Equals(System.Drawing.Imaging.ImageFormat.MemoryBmp) Then format = System.Drawing.Imaging.ImageFormat.Png End If End If Dim bytes As Byte() Using stream = New System.IO.MemoryStream source.Save(stream, format) bytes = stream.ToArray End Using Return bytes End Function ''' <summary> ''' Converts an image to a different ImageFormat ''' </summary> ''' <param name="source">The image to convert</param> ''' <param name="format">The format the image should be changed to</param> ''' <returns>The new image converted to the specified format</returns> <Runtime.CompilerServices.Extension()> Public Function ConvertFormat(source As System.Drawing.Image, format As System.Drawing.Imaging.ImageFormat) As System.Drawing.Image Dim bytes = source.ToArray(format) Dim image = BytesToImage(bytes) Return image End Function ''' <summary> ''' Returns the resolved static image format from an images RawFormat ''' </summary> ''' <param name="source">The image to get the format from</param> ''' <returns>The resolved image format</returns> <Runtime.CompilerServices.Extension()> Public Function ResolvedFormat(source As System.Drawing.Image) As System.Drawing.Imaging.ImageFormat Dim format = FindImageFormat(source.RawFormat) Return format End Function ''' <summary> ''' Returns all the ImageFormats as an IEnumerable ''' </summary> ''' <returns>All the ImageFormats as an IEnumerable</returns> Public Function GetImageFormats() As IEnumerable(Of System.Drawing.Imaging.ImageFormat) Static formats As IEnumerable(Of System.Drawing.Imaging.ImageFormat) = GetType(System.Drawing.Imaging.ImageFormat) _ .GetProperties(Reflection.BindingFlags.Static Or Reflection.BindingFlags.Public) _ .Select(Function(p) CType(p.GetValue(Nothing, Nothing), System.Drawing.Imaging.ImageFormat)) Return formats End Function ''' <summary> ''' Returns the static image format from a RawFormat ''' </summary> ''' <param name="raw">The ImageFormat to get info from</param> ''' <returns>The resolved image format</returns> Public Function FindImageFormat(raw As System.Drawing.Imaging.ImageFormat) As System.Drawing.Imaging.ImageFormat Dim format = GetImageFormats().FirstOrDefault(Function(x) raw.Equals(x)) If format Is Nothing Then format = System.Drawing.Imaging.ImageFormat.Png End If Return format End Function ''' <summary> ''' Update the image to reflect its exif orientation ''' </summary> ''' <param name="image">The image to update</param> <Runtime.CompilerServices.Extension()> Public Sub FixOrientation(image As System.Drawing.Image) Dim orientationId = 274 If Not image.PropertyIdList.Contains(orientationId) Then Return End If Dim orientation = BitConverter.ToInt16(image.GetPropertyItem(orientationId).Value, 0) Dim rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipNone Select Case orientation Case 1 ' Image is correctly oriented rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipNone Case 2 ' Image has been mirrored horizontally rotateFlip = System.Drawing.RotateFlipType.RotateNoneFlipX Case 3 ' Image has been rotated 180 degrees rotateFlip = System.Drawing.RotateFlipType.Rotate180FlipNone Case 4 ' Image has been mirrored horizontally and rotated 180 degrees rotateFlip = System.Drawing.RotateFlipType.Rotate180FlipX Case 5 ' Image has been mirrored horizontally and rotated 90 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate90FlipX Case 6 ' Image has been rotated 90 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate90FlipNone Case 7 ' Image has been mirrored horizontally and rotated 270 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate270FlipX Case 8 ' Image has been rotated 270 degrees clockwise rotateFlip = System.Drawing.RotateFlipType.Rotate270FlipNone End Select If rotateFlip <> System.Drawing.RotateFlipType.RotateNoneFlipNone Then image.RotateFlip(rotateFlip) End If End Sub ''' <summary> ''' Returns an image from a byte array ''' </summary> ''' <param name="bytes">The bytes representing the image</param> ''' <returns>The image from the byte array</returns> Public Function BytesToImage(bytes As Byte()) As System.Drawing.Image Return StreamToImage(New System.IO.MemoryStream(bytes)) End Function ''' <summary> ''' Returns an image from a stream ''' </summary> ''' <param name="stream">The stream representing the image</param> ''' <returns>The image from the stream</returns> Public Function StreamToImage(stream As System.IO.Stream) As System.Drawing.Image Return System.Drawing.Image.FromStream(stream) End Function End Module End NamespaceEnd Namespace ' http://programmingnotes.org/
9. More Examples
Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
' ============================================================================' Author: Kenneth Perkins' Date: Nov 9, 2020' Taken From: http://programmingnotes.org/' File: Program.vb' Description: The following demonstrates the use of the Utils Namespace' ============================================================================Option Strict OnOption Explicit OnImports SystemImports Utils.Image Module Program Sub Main(args As String()) Try Dim path = $"" ' Image Dim image = System.Drawing.Image.FromFile(path) 'Dim newImage = image.Resize(New System.Drawing.Size(500, 500)) Dim newImage = image.Rotate(-90) ' Byte 'Dim bytes As Byte() 'Dim newImage = Utils.Image.Resize(bytes, New System.Drawing.Size(800, 800)) 'Dim newImage = Utils.Image.Rotate(bytes, 180) ' Stream 'Dim stream As New System.IO.MemoryStream 'Dim newImage = Utils.Image.Resize(stream, New System.Drawing.Size(2000, 2000)) 'Dim newImage = Utils.Image.Rotate(stream, 360) Dim newPath = $"" newImage.Save(newPath) Catch ex As Exception Display(ex.ToString) Finally Console.ReadLine() End Try End Sub Public Sub Display(message As String) Console.WriteLine(message) Debug.Print(message) End SubEnd Module ' http://programmingnotes.org/
QUICK NOTES:
The highlighted lines are sections of interest to look out for.
The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.