Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
Webmethod io integration-10.15
Actually i have base64 data and i want to convert base64 to pdf, is it possibl to convert to pdf?.
Base64 is a binary-to-text encoding scheme. If the original binary bits were a PDF, then decoding the Base64 string will provide the raw bytes of the PDF.
How can i generate pdf(image) from base64?.
Search the wM docs for base64. You may find a component that will decode the base64 into the raw bytes.
Use pub.string:base64Decode → pub.file:bytesToFile this might do.
I was attempting to “teach a person to fish” rather than “give a person a fish”
Love this approach.
+1 for this post, In this context, essential to keep in mind the difference between a text format such as pdf vs a text encoding scheme such as Base64.
-NP