Share via


SSRS Troubleshooting: How to handle image/pjpeg MIME Type in image control which is not supported

 Solution:

  1. Go to the image control and find Properties.
  2. Find the property "Use this MIME type"
  3. 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")).