I have a flow that I am pulling an image column from my dataverse table. I am using a list rows to get my image, then a compose with a base64ToBinary expression (base64ToBinary(outputs('Get_a_row_by_ID')?['body/cr370_pictureoftank'])), then putting the compose output in my blob content for a create blob. This flow works to get my images into the blob storage, but my issue is the images are thumbnails and I can't figure out how to get the full image size from the dataverse. It seems like the only way to pull the image is getting a base64 encoded data, but how can I get the full image? It is stored as a full image in the dataverse
I would like my full image to come into the blob, not a thumbnail.