All URIs are relative to https://api.aspose.cloud/v4.0
| Method | HTTP request | Description |
|---|---|---|
| Scan | Get /barcode/scan | Scan a barcode from a file on an Internet server using a GET request with a query string parameter. For scanning files from your hard drive, use `scan-body` or `scan-multipart` endpoints instead. |
| ScanBase64 | Post /barcode/scan-body | Scan a barcode from a file in the request body using a POST request with a JSON or XML body parameter. |
| ScanMultipart | Post /barcode/scan-multipart | Scan a barcode from a file in the request body using a POST request with a multipart form parameter. |
BarcodeResponseList Scan(ctx, fileUrl) Scan a barcode from a file on an Internet server using a GET request with a query string parameter. For scanning files from your hard drive, use
scan-bodyorscan-multipartendpoints instead.
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| fileUrl | string | URL to the barcode image. |
[Back to API list] [Back to Model list] [Back to README]
BarcodeResponseList ScanBase64(ctx, scanBase64Request) Scan a barcode from a file in the request body using a POST request with a JSON or XML body parameter.
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| scanBase64Request | ScanBase64Request | Barcode scan request. |
[Back to API list] [Back to Model list] [Back to README]
BarcodeResponseList ScanMultipart(ctx, file) Scan a barcode from a file in the request body using a POST request with a multipart form parameter.
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| file | os.Fileos.File | Barcode image file. |