Skip to content

Instantly share code, notes, and snippets.

View jurilents's full-sized avatar
🌐
For the glory of open source!!!

Yurii jurilents

🌐
For the glory of open source!!!
View GitHub Profile
@kiichi
kiichi / ImageResizeTest.cs
Last active July 1, 2023 07:56
Image Resize Example in C#
// Add System.Drawing as a reference.
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
namespace ImageResizeTest {
class Program {
static void Main(string[] args) {
string path = @"C:\\Users\kiichi\work\ImageResizeTest\geo-elevation.png";
Resize(path, 600, 600);