Share vb.net rotate bitmap 90

độ ### Cách xoay bitmap 90 độ trong vb.net

**Tổng quan**

Bài viết này sẽ chỉ cho bạn cách xoay bitmap 90 độ trong vb.net.Chúng tôi sẽ sử dụng [System.Drawing.image.rotateFlip] (Image.RotateFlip(RotateFlipType) Method (System.Drawing)) để xoay bitmap.

** Các bước **

1. ** Nhập không gian tên System.Drawing. **

`` `VBNet
Nhập hệ thống.Drawing
`` `

2. ** Tạo đối tượng bitmap. **

`` `VBNet
Bitmap mờ như bitmap = new Bitmap (100, 100)
`` `

3. ** Vẽ một cái gì đó trên đối tượng bitmap. **

`` `VBNet
Sử dụng đồ họa làm đồ họa = graphics.fromimage (bitmap)
Đồ họa.DrawLine (PENS.BLACK, 0, 0, 100, 100)
Kết thúc bằng cách sử dụng
`` `

4. ** Xoay đối tượng bitmap. **

`` `VBNet
BitMap.RotateFlip (RotateFlipType.Rotate90FlipNone)
`` `

5. ** Hiển thị đối tượng bitmap. **

`` `VBNet
PictureBox1.Image = bitmap
`` `

** Đầu ra **

Đầu ra của mã sẽ là một đối tượng bitmap đã được xoay 90 độ.

### hashtags

* #vb.net
* #bitmap
* #rotate
* #90 độ
* #Hình ảnh
=======================================
degrees ### How to Rotate a Bitmap 90 Degrees in VB.NET

**Overview**

This article will show you how to rotate a bitmap 90 degrees in VB.NET. We will use the [System.Drawing.Image.RotateFlip](https://docs.microsoft.com/en-us/dotnet/api/system.drawing.image.rotateflip) method to rotate the bitmap.

**Steps**

1. **Import the System.Drawing namespace.**

```vbnet
Imports System.Drawing
```

2. **Create a Bitmap object.**

```vbnet
Dim bitmap As Bitmap = New Bitmap(100, 100)
```

3. **Draw something on the Bitmap object.**

```vbnet
Using graphics As Graphics = Graphics.FromImage(bitmap)
graphics.DrawLine(Pens.Black, 0, 0, 100, 100)
End Using
```

4. **Rotate the Bitmap object.**

```vbnet
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone)
```

5. **Display the Bitmap object.**

```vbnet
PictureBox1.Image = bitmap
```

**Output**

The output of the code will be a Bitmap object that has been rotated 90 degrees.

### Hashtags

* #vb.net
* #bitmap
* #rotate
* #90 degrees
* #Image
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top