My report purpose is generate name list with QR code. i had loaded the datalist from database , then call a function to generate qrcode image for every row and store in datalist.
In the report template, i had defined a column for QR code (column M), but when execute the report, the qr code column shown "system.byte[]" only.
You do have a <#photo> expression in the config sheet, but it doesn't seem to be in the image. Maybe it is just an old template that you sent, but I wanted to make sure you have that correctly setup.
In the code, is the field "qrcode" in the datatable of type byte[] ?
You are getting a "System.byte[]" string, this means that somewhere the bytes are converted into a string. The most likely reason is that the db column is not a blob type. Take a look here: c# - How can i add image in a datatable? - Stack Overflow
Let me knows if that works, if it doesn't I'll try to make a little example here and send it.