For individual image file and specific records copy paste the below code into a blank Flow editor.
Change the file path in the Set variable (first line).
Run the Flow to see the output.
SET FullFilePath TO $'''D:\\Test\\P1000231.JPG'''
File.GetPathPart File: FullFilePath Directory=> Directory FileName=> FileName
Scripting.RunVBScript VBScriptCode: $'''Dim oAppShell, oFolder, output,i
Set objFso = CreateObject(\"Scripting.FileSystemObject\")
Set oAppShell = CreateObject(\"Shell.Application\")
varFolderPath = \"%Directory%\"
Set oFolder = oAppShell.Namespace(varFolderPath)
File = \"%FileName%\"
output = oFolder.GetDetailsOf(oFolder.items.Item(File),0) & \"|\"
output = output & oFolder.GetDetailsOf(oFolder.items.Item(File),1) & \"|\"
output = output & oFolder.GetDetailsOf(oFolder.items.Item(File),30) & \"|\"
output = output & oFolder.GetDetailsOf(oFolder.items.Item(File),32)
WScript.Echo output''' ScriptOutput=> VBScriptOutput
Text.SplitText.SplitWithDelimiter Text: VBScriptOutput CustomDelimiter: $'''|''' IsRegEx: False Result=> TextList
Display.ShowMessageDialog.ShowMessage Message: $'''The camera model is: %TextList[2]%''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed
The yellow highlighted are the ones where you give the numbers.
Example of 4 different numbers. Add the ones you need and remove others.
Note that the pipe | symbol is not appended to the last one in line no. 14. (use of pipe explained below)

The idea is to produce a text output variable separated by a pipe | delimiter.

And then split using the delimiter. This will give a List variable for each of those numbers

Access the individual elements using the notation for instance as %TextList[2]%

(You can even create a customised vbscript function where you just pass the image path and only a single number from PAD and it will return the value of that number. This function can then be called again and again for different numbers in each call.)