SSRS Troubleshooting: How to handle image/pjpeg MIME Type in image control which is not supported
Solution:
- Go to the image control and find Properties.
- Find the property "Use this MIME type"
- Write an expression to change the MIME type to a MIME type that is supported by SSRS ex:
IIf(First(Fields!MIME_TYPE.Value, "DataSetImage") = "image/pjpeg", "image/jpeg", First(Fields!MIME_TYPE.Value, "DataSetImage")).