Login Register


Imagizer // Fast and Easy Image Converter filter_list
Author
Message
Imagizer // Fast and Easy Image Converter #1
Such a snazzy name but here is an image converter I made a while ago. Just feed like releasing it because why not  :plz:

Converts from PNG to Jpeg, vice versa.

[Image: 5xXRnlY.png]

Code:
// Some are probably not needed lmao using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Drawing.Imaging; // Very nice name :3 namespace WindowsFormsApplication1 {    public partial class Form1 : Form    {        Image img;        // Ignore this shit jsut does shit :D        public Form1()        {            InitializeComponent();        }        // Open button        private void button1_Click(object sender, EventArgs e)        {            DialogResult dr = openFileDialog1.ShowDialog();            if(dr == DialogResult.OK)            {                img = Image.FromFile(openFileDialog1.FileName);                pictureBox1.Image = img;            }        }        // Save button        private void button2_Click(object sender, EventArgs e)        {            DialogResult dr = saveFileDialog1.ShowDialog();            if (dr == DialogResult.OK)            {                if (img != null)                {                    if (saveFileDialog1.FileName.Substring(saveFileDialog1.FileName.Length - 3).ToLower() == "jpg")                    {                        img.Save(saveFileDialog1.FileName, ImageFormat.Jpeg);                    }                    if (saveFileDialog1.FileName.Substring(saveFileDialog1.FileName.Length - 3).ToLower() == "png")                    {                        img.Save(saveFileDialog1.FileName, ImageFormat.Png);                    }                }            }        }    } }

Reply

RE: Imagizer // Fast and Easy Image Converter #2
<3 Versified love how I'm in credits <3

Nice simple converter, I like.








            Devon | Kik: Hurry


Reply

RE: Imagizer // Fast and Easy Image Converter #3
You used swag.

i cri
[Image: 1i4r3vK.jpg]
@"Shiraishi's Angel" is a kawaii angel
(08-16-2015, 09:47 AM)Travis Wrote: Sorry it's bed time. Wife said if I don't goto bed then she's hiding the cheerios. :noh:

Reply

RE: Imagizer // Fast and Easy Image Converter #4
um idk if I use this
[Image: Rs115Wh.png]

Reply







Users browsing this thread: 1 Guest(s)