You can get direct link of an image in image column via flow:

Trigger input: Number (ID of item)
Body of Parse JSON:
{
"type": "object",
"properties": {
"@@odata.context": {
"type": "string"
},
"@@odata.etag": {
"type": "string"
},
"createdDateTime": {
"type": "string"
},
"eTag": {
"type": "string"
},
"id": {
"type": "string"
},
"lastModifiedDateTime": {
"type": "string"
},
"webUrl": {
"type": "string"
},
"createdBy": {
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
}
},
"lastModifiedBy": {
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
}
},
"parentReference": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"path": {
"type": "string"
},
"listId": {
"type": "string"
},
"siteId": {
"type": "string"
},
"uniqueId": {
"type": "string"
}
}
},
"contentType": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"shared": {
"type": "object",
"properties": {
"effectiveRoles": {
"type": "array",
"items": {
"type": "string"
}
},
"scope": {
"type": "string"
}
}
},
"fields": {
"type": "object",
"properties": {
"@@odata.etag": {
"type": "string"
},
"ID": {
"type": "string"
},
"Title": {
"type": "string"
},
"field_6": {
"type": "integer"
},
"field_8": {
"type": "string"
},
"SampleImage": {
"type": "string"
},
"imagecode": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"Modified@odata.type": {
"type": "string"
},
"Modified": {
"type": "string"
},
"Created@odata.type": {
"type": "string"
},
"Created": {
"type": "string"
},
"AuthorLookupId": {
"type": "string"
},
"EditorLookupId": {
"type": "string"
},
"_UIVersionString": {
"type": "string"
},
"Attachments": {
"type": "boolean"
},
"Edit": {
"type": "string"
},
"LinkTitleNoMenu": {
"type": "string"
},
"LinkTitle": {
"type": "string"
},
"ItemChildCount": {
"type": "string"
},
"FolderChildCount": {
"type": "string"
},
"_ComplianceFlags": {
"type": "string"
},
"_ComplianceTag": {
"type": "string"
},
"_ComplianceTagWrittenTime": {
"type": "string"
},
"_ComplianceTagUserId": {
"type": "string"
}
}
}
}
}
Body of Parse JSON 1, which will parse you image column:
{
"type": "object",
"properties": {
"fileName": {
"type": "string"
}
}
}
Then in Power Apps,
Download(Flow_Name.Run(ThisItem.ID).Your_Response)
---------------------------
If the solution I provided assisted you in resolving this issue, kindly select "Accept as solution" This will help others in finding the solution more expediently 😄Also, a Thumbs up would be a great compliment!