• 大小: 0.01M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: 图片  缩小  C#  c  

资源简介

C# WinFrom无失真缩小图片

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//Download by http://www.codefans.net
using System.IO;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;

namespace NoDistortionNarrowPicture
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            //选择文件会话
            OpenFileDialog openfile = new OpenFileDialog();
            //选择文件类型
            openfile.title = “请选择要插入的图片“;
            openfile.Filter = “JPG图片|*.jpg|BMP图片|*.bmp|Gif图片|*.gif“;
            //是否选择多个文件

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

                51137                    16


评论

共有 条评论