I need to pass an image (a person’s signature) from my Delphi application to a C# server. My expectation is that I will use a Binary parameter in the method call. How should I save the image to the stream in Delphi and load it from the stream in C#?
essentially, what you’ll wanna do is focus on a specific image format that you want to pass (say PNG, or JPEG, depending on your needs). Then use the platforms’ specific APIs in Delphi and .NEt respectively to load/save that image format from/to binary blob, and send that binary data via your RO service.