c#winform中对Jpg图片的等比例分割并且打印分割后的图片?该怎么做?
怎样将10个pictureBox中的内容循环传给打印机,让打印机执行打印呢?前面分割我做好了就剩这块了~ 代码附上 Image[] ImageList = { pictureBox1.Image, pictureBox2.Image, pictureBox3.Image, pictureBox4.Image, pictureBox5.Image,
pictureBox6.Image, pictureBox7.Image,
pictureBox8.Image,pictureBox9.Image,pictureBox10.Image};
百度C# 缩略图
哈哈,回复的不错
没明白 什么意思
这是分割的方法,具体大小或者怎样分割你可以自己实现
/// <summary> /// 截取图片 /// </summary> /// <param name="imgaddress">文件名(包括地址+扩展名)</param> /// <param name="x">左上角点X</param> /// <param name="y">左上角点Y</param> /// <param name="width">截取的图片宽</param> /// <param name="height">截取的图片高</param> /// <returns>截取后图片数据源</returns> private BitmapSource cutImage(string imgaddress, int x, int y, int width, int height) { return new CroppedBitmap( BitmapFrame.Create(new Uri(imgaddress, UriKind.Relative)), new Int32Rect(x, y, width, height) );