Skip to content

tony-xlh/Barcode-Reading-Server-ASP-NET-Core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Barcode-Reading-Server-ASP-NET-Core

A barcode reading server demo in ASP.NET Core for Dynamsoft Barcode Reader .NET.

Run the app:

dotnet run

Web API Usage

  • Endpoint: /readBarcodes

  • Request:

    Headers:

    {
      "Content-Type":"application/json"
    }

    Body:

    {
      "base64": "the base64 string of the image for decoding"
    }
  • Example response:

{
  "elapsedTime": 0,
  "results": [
    {
      "barcodeText":"",
      "barcodeFormat":"",
      "x1":0,
      "x2":0,
      "x3":0,
      "x4":0,
      "y1":0,
      "y2":0,
      "y3":0,
      "y4":0
    }
  ]
}

About

A barcode reading server demo in ASP.NET Core

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published