首頁 > 軟體

C#中的影象Image類與列印Printing類用法

2022-05-16 13:00:11

一、Images

1、概述

Image 類為Bitmap(點陣圖) 和 Metafile(向量圖) 的類提供功能的抽象基礎類別。Image類不能直接建立物件的,但Image.FromFile()返回的是Bitmap或者Metafile的物件。

初始化Image:

Image img0 = Image.FromFile(@"C:1.jpg");
Image img1 = Image.FromStream(File.OpenRead(@"C:1.jpg"));
Image img2 = new Bitmap(@"C:1.jpg");

2、屬性

  • PixelFormat:獲取此 Image 的畫素格式。
  • RawFormat:獲取此 Image 的檔案格式。
  • Size:獲取此影象的寬度和高度(以畫素為單位)。
  • Width:獲取此 Image 的寬度(以畫素為單位)。
  • Height:獲取此 Image 的高度(以畫素為單位)。

3、方法

  • FromFile(String):從指定的檔案建立 Image。
  • FromStream(Stream):從指定的資料流建立 Image。
  • GetBounds(GraphicsUnit):以指定的單位獲取影象的界限。
  • GetThumbnailImage(Int32, Int32, Image+GetThumbnailImageAbort, IntPtr):返回此 Image 的縮圖。
  • RotateFlip(RotateFlipType):旋轉、翻轉或者同時旋轉和翻轉 Image。
  • Save(Stream, ImageFormat):將此影象以指定的格式儲存到指定的流中。
  • Save(String, ImageFormat):將此 Image 以指定格式儲存到指定檔案。

4、繪製圖片:

using (Image img = new Bitmap(@"C:1.jpg"))
{
    System.Drawing.Graphics g = Graphics.FromImage(img);
    g.DrawImage(img, new System.Drawing.Rectangle(0, 0, img.Width, img.Height));
}

5、縮放:

Image img1 = new Bitmap(@"C:1.jpg");
using (Image smallImage = new Bitmap(img1, new Size(img1.Width / 2, img1.Height / 2)))
{
    //...
}

6、獲取縮圖

Bitmap myBitmap = new Bitmap("Climber.jpg");
Image myThumbnail = myBitmap.GetThumbnailImage(40, 40, null, IntPtr.Zero);
e.Graphics.DrawImage(myThumbnail, 150, 75);

7、旋轉

Image img = Bitmap.FromFile(@"C:music.bmp");
PictureBox1.SizeMode = PictureBoxSizeMode.AutoSize;
PictureBox1.Image = img;
//旋轉
img.RotateFlip(RotateFlipType.Rotate180FlipY);
PictureBox1.Image = img;

8、雙倍緩衝

//建立一個與表單工作區大小相同的空點陣圖
using (Bitmap image = new Bitmap(ClientRectangle.Width, ClientRectangle.Height))//建立點陣圖範例
{
    Graphics g = Graphics.FromImage(image);//以此影象做畫布,畫圖形
    g.FillRectangle(Brushes.White, ClientRectangle);
    g.DrawImage(image, ClientRectangle);  //在表單中繪製出記憶體中的影象
}

9、格式轉換與儲存:

img.Save("c:/1.jpg", ImageFormat.Jpeg);
img.Save("c:/1.gif", ImageFormat.Gif);

二、列印 System.Drawing.Printing

1、預覽列印

PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
PrintPreviewDialog ppd = new PrintPreviewDialog();
ppd.Document = pd;
ppd.ShowDialog();

2、列印

PrintDocument pd = new PrintDocument();
pd.DefaultPageSettings.PrinterSettings.PrinterName = "ZDesigner GX430t";       //印表機名稱
pd.DefaultPageSettings.Landscape = true;  //設定橫向列印,不設定預設是縱向的
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
pd.Print();

3、分頁列印文字檔案

多頁列印必須把HasMorePages 設為true,達到需要的頁數後關掉此屬性。否則無窮新增新頁面!

當HasMorePages 設為true後,PrintDocument_PrintPage重複自我執行,直到HasMorePages 設為false。

private string text = string.Empty;
private int top = 0;
private Size textSize = Size.Empty;


private void button1_Click(object sender, EventArgs e)
{
    text = this.textBox1.Text;
    PrintDocument pd = new PrintDocument();
    pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
    pd.BeginPrint += new PrintEventHandler(pd_BeginPrint);

    using (System.Windows.Forms.PrintPreviewDialog dlg = new PrintPreviewDialog())
    {
        dlg.Document = pd;
        dlg.WindowState = FormWindowState.Maximized;
        dlg.AllowTransparency = true;
        dlg.AutoScaleMode = AutoScaleMode.Dpi;
        dlg.ShowDialog();
    }
}

private void pd_BeginPrint(object sender, PrintEventArgs e)
{
    textSize = Size.Empty;
    top = 0;
}

private void pd_PrintPage(object sender, PrintPageEventArgs e)
{
    if (textSize == Size.Empty)
    {
        textSize = Size.Round(e.Graphics.MeasureString(text, Font, e.MarginBounds.Width));
    }
    e.Graphics.SetClip(e.MarginBounds);
    e.Graphics.DrawString(text, this.Font, Brushes.Black, new Rectangle(e.MarginBounds.Location.X, e.MarginBounds.Location.Y + top * -1, textSize.Width, textSize.Height)); ;
    if (top + e.MarginBounds.Height < textSize.Height)
    {
        top = top + e.MarginBounds.Height;
        e.HasMorePages = true;
    }
}

到此這篇關於C#中影象Image類與列印Printing類的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com