FoxPro Programming                 
	 
	 
Extracting .pdf from Blob
	 
	 Hello Rick and friends,
I need to extract .pdf files from "fileBlob" nodes in a JSON.
I assume it should be something like converting the Blob nodes to .pdf files.
Is there any shortcut for doing this in FoxPro?
Thank you in advance,
Kathy
 
					 
		  blob in JSON is just base64 encoded. Capture the string from the JSON then run STRCONV(lcblob, 14) on it to get the binary string.
+++ Rick ---
