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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A promise that resolves with a `Quadrilateral` object defining the precise locat
**Code snippet**

```javascript
const quad = await Dynamsoft.DBR.IdentityProcessor.findPortraitZone();
const quad = await Dynamsoft.IdentityUtility.IdentityProcessor.findPortraitZone();
if (quad) {
console.log("Portrait zone found:", quad);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ A string representing the version of the Identity Utility module.
**Code snippet**

```javascript
const version = Dynamsoft.DBR.IdentityUtilityModule.getVersion();
const version = Dynamsoft.IdentityUtility.IdentityUtilityModule.getVersion();
console.log(version);
```

Expand Down
Loading