thejimmyfo
Programmer
Hi, I am trying to get an image to display and it would need to be passed in by a parameter - the reason is the image is generated elsewhere and stored in a database as a compressed byte array. To pass it to Crystal, it's pulled from the database into code, decompressed into an image, and then needs to be passed. I've tried the following:
Where signatureBytes is the byte[] containing the image data.
In Crystal, I have a matching parameter but can not select a blob object to display it as an object.
Is it possible to pass the image programatically like that?
Thanks,
James
Code:
detailReport.SetParameterValue("@Signature", signatureBytes);
Where signatureBytes is the byte[] containing the image data.
In Crystal, I have a matching parameter but can not select a blob object to display it as an object.
Is it possible to pass the image programatically like that?
Thanks,
James