Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
secret.txt
.DS_Store
logs/
*.log
*.tmp
temp/*
!temp/keep.txt
74 changes: 74 additions & 0 deletions dynamsoft-general/check-current-version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
layout: default-layout
title: How to check the version of the JS SDK I am currently using?
keywords: Dynamsoft Barcode Reader, FAQ, tech basic, check version, current version
description: How to check the version of the JS SDK I am currently using?
needAutoGenerateSidebar: false
---

# How to check the version of the JS SDK I am currently using?

[<< Back to FAQ index](index.md)

There are multiple ways to check the version currently being used -

- The first way is to use the [version API](https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/InitializationControl.html?ver=latest#version). Using this API in the browser console should print out the version of the library being used by the web app.
- If you are using the library via npm or yarn, then you can check the version of the package via

```bash
npm –v dynamsoft-javascript-barcode
```

- If you are including the library via the CDN link, then the version number should be mentioned in that reference link.

<div class="sample-code-prefix template2"></div>
>- Javascript
>- Objective-C
>- Swift
>- Android
>- Python
>- C++
>- C#
>
>
```javascript
const version = Dynamsoft.DBR.BarcodeReaderModule.getVersion();
console.log(version);
```
>
```objc
NSString *version = [DSCaptureVisionRouterModule getVersion];
```
>
```swift
let version = CaptureVisionRouterModule.getVersion()
```
>
```java
BarcodeReaderModule reader = BarcodeReaderModule();
String versionInfo = reader.getVersion();
```
>
```python
reader = BarcodeReaderModule()
print(reader.get_version())
```
>
```c++
const char* version = CCaptureVisionRouterModule::GetVersion();
```
>
```csharp
using (CaptureVisionRouter cvr = new CaptureVisionRouter())
{
SimplifiedCaptureVisionSettings settings;
string errorMsg;
// Obtain current runtime settings of `CCaptureVisionRouter` instance.
cvr.GetSimplifiedSettings(PresetTemplate.PT_READ_BARCODES, out settings);
// Specify the barcode formats by enumeration values.
// Use "|" to enable multiple barcode formats at one time.
settings.barcodeSettings.barcodeFormatIds = (ulong)(EnumBarcodeFormat.BF_QR_CODE | EnumBarcodeFormat.BF_ONED);
// Update the settings.
cvr.UpdateSettings(PresetTemplate.PT_READ_BARCODES, settings, out errorMsg);
}
```
File renamed without changes.
16 changes: 16 additions & 0 deletions dynamsoft-license/dbr-supports-pdf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: default-layout
title: Can Barcode Reader SDK read PDF files? Do I need to pay for this feature?
keywords: Dynamsoft Barcode Reader, FAQ, DBR Introduction, General, PDF
description: Can Barcode Reader SDK read PDF files? Do I need to pay for this feature?
needAutoGenerateSidebar: false
permalink: /faq/general/dbr-supports-pdf.html
---

## Can Barcode Reader SDK read PDF files? Do I need to pay for this feature?

[<< Back to FAQ index](index.md)

Dynamsoft Barcode Reader does indeed support reading barcodes from PDF files (see [Features](https://www.dynamsoft.com/barcode-reader/features/#Decode-Barcodes)). The only exception is the JavaScript and Mobile editions currently.

No extra license is required to read from PDF files.
File renamed without changes.
15 changes: 0 additions & 15 deletions dynamsoft-mobile/android/disable-continuous-scanning.md

This file was deleted.

15 changes: 0 additions & 15 deletions dynamsoft-mobile/android/drivers-license-extraction.md

This file was deleted.

32 changes: 0 additions & 32 deletions dynamsoft-mobile/android/how-to-enable-qr-model-one.md

This file was deleted.

19 changes: 0 additions & 19 deletions dynamsoft-mobile/android/min-system-requirements.md

This file was deleted.

24 changes: 0 additions & 24 deletions dynamsoft-mobile/android/no-camera-enhancer.md

This file was deleted.

17 changes: 0 additions & 17 deletions dynamsoft-mobile/android/page-freeze.md

This file was deleted.

17 changes: 0 additions & 17 deletions dynamsoft-mobile/android/reduce-battery-consumption.md

This file was deleted.

17 changes: 0 additions & 17 deletions dynamsoft-mobile/android/simulator-support.md

This file was deleted.

15 changes: 0 additions & 15 deletions dynamsoft-mobile/android/template-support-v9.6.40.md

This file was deleted.

17 changes: 0 additions & 17 deletions dynamsoft-mobile/android/template-support.md

This file was deleted.

20 changes: 0 additions & 20 deletions dynamsoft-mobile/android/troubleshooting-failed-image.md

This file was deleted.

Loading