• GetThumbnailImage 缩放图像会严重失真


    using System;

    using System.Collections.Generic;

    using System.ComponentModel;

    using System.Data;

    using System.Drawing;

    using System.Text;

    using System.Windows.Forms;

     

    namespace BYS2012

    {

        public partial class Form6 : Form

        {

            public Form6()

            {

                InitializeComponent();

            }

     

            private void button1_Click(object sender, EventArgs e)

            {

               

                    Image.GetThumbnailImageAbort myCallback = new Image.GetThumbnailImageAbort(ThumbnailCallback);

                    Bitmap myBitmap = new Bitmap("D:\\pqimg\\" + "IMG_2537.jpg");

                    int y = (int)1440 * myBitmap.Height / myBitmap.Width;

     

                    Image myThumbnail = myBitmap.GetThumbnailImage(1440,y, myCallback, IntPtr.Zero);

                    myThumbnail.Save("D:\\pqimg2\\" + "IMG_2537.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

     

                    MessageBox.Show("ok");

               

            }

            public bool ThumbnailCallback()

            {

                return false;

            }

        }

    }

  • 相关阅读:
    使用vue来开发一个下拉菜单组件(2)
    使用vue来开发一个下拉菜单组件(1)
    在Vue中引入Bootstrap,Font-awesome
    九宫格表格样式
    web upload 上传多张图片实例
    input 的multiple 上传多个文件
    常用 验证码 JS 代码
    最全 H5 form 表单 + 正则验证
    mysql的指令
    Ant编译MapReduce程序
  • 原文地址:https://www.cnblogs.com/qqhfeng/p/3125745.html
Copyright © 2020-2023  润新知