如何修正條碼方向

This article was translated from English: Does it need improvement?
Translated
View the article in English

查克尼思·賓

條碼方向是指條碼在產品或文件上的列印或顯示角度。 它可以調整到不同的角度以適應不同的佈局和設計要求。 最常見的方向是水平的,條碼從左向右對齊,這是標準且最廣泛使用的格式。 任何非零方向度都給圖書館檢測和檢索值帶來挑戰。 IronBarcode 提供自動方向校正功能,可檢測條碼和 QR 碼的任何非零方向。

開始使用 IronBarcode

立即在您的專案中使用IronBarcode,並享受免費試用。

第一步:
green arrow pointer


修正條碼方向示例

要應用自動方向校正,請將 BarcodeReaderOptions 中的 AutoRotate 屬性設置為 true。 此屬性預設為真,因此您無需執行任何操作。 讀取任何非零向的條碼圖像應該可以直接使用。

讓我們使用下面的圖片作為我們的樣本。 下載以下内容 0° 旋轉5°旋轉 範例圖片。

20° Rotation
45° Rotation

代碼

:path=/static-assets/barcode/content-code-examples/how-to/image-orientation-correct-autorotate.cs
using IronBarCode;
using System;

BarcodeReaderOptions myOptionsExample = new BarcodeReaderOptions()
{
    // Turn on auto rotation in ML detection
    AutoRotate = true,
};

var results = BarcodeReader.Read("rotate20.png", myOptionsExample);

// Print out the value
Console.WriteLine(results[0].Value);
Imports IronBarCode
Imports System

Private myOptionsExample As New BarcodeReaderOptions() With {.AutoRotate = True}

Private results = BarcodeReader.Read("rotate20.png", myOptionsExample)

' Print out the value
Console.WriteLine(results(0).Value)
VB   C#

在許多情況下,僅校正旋轉可能不足夠,還需要使用過濾器。 了解如何在以下文章中使用圖像過濾器:「如何使用圖像校正濾鏡.

Chaknith related to 代碼

查克尼思·賓

軟體工程師

Chaknith 是開發者界的夏洛克福爾摩斯。他第一次意識到自己可能有個軟體工程的未來,是在他為了娛樂而參加程式挑戰的時候。他的重點是 IronXL 和 IronBarcode,但他也引以為豪的是,他幫助客戶解決所有產品的問題。Chaknith 利用他與客戶直接對話中獲得的知識,以進一步改進產品。他的實際反饋超越了 Jira 工單,並支持產品開發、文件撰寫和行銷,以提升客戶的整體體驗。不在公司時,他通常在學習機器學習、寫程式和徒步旅行。