DSImageProcessingModule
The DSImageProcessingModule class defines common functionality in the DynamsoftImageProcessing module.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSImageProcessingModule : NSObjectclass ImageProcessingModule : NSObject
Methods
| Method | Description |
|---|---|
getVersion |
Get the version of DynamsoftImageProcessing module. |
getVersion
Get the version of DynamsoftImageProcessing module.
- Objective-C
- Swift
+ (NSString *)getVersion;class func getVersion() -> String
Return Value
The version of DynamsoftImageProcessing module.
Code Snippet
- Objective-C
- Swift
NSString *version = [DSImageProcessingModule getVersion];let version = ImageProcessingModule.getVersion()