Solved
Image file to IMAGE basetype
Started developing extension to get image file from windows file explorer.
- Created resource
- Created service [input: imagePath, output: IMAGE]
Here how to convert Imge file to thingworx IMAGE basetype?
Started developing extension to get image file from windows file explorer.
Here how to convert Imge file to thingworx IMAGE basetype?
Got solution with by converting image file into Base64 String.
String base64String = null;
File imageFile = new File(imagePath);
byte[] fileContent = FileUtils.readFileToByteArray(imageFile);
String encodedString = Base64.getEncoder().encodeToString(fileContent);
base64String = encodedString;Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.