Problem: I am working with presentation where I convert slide in to image. Now I have to check for duplicate slide image that is in same presentation or new upload presentation.
What I did: I save image in SQL Server Database with base 64 format and compare this images with new uploaded file.
Issue: when I uploaded same presentation at that time base 64 work properly, but if I check with different presentation with same slide it is not get same base 64 string. I've tried with byte[], but still get same issue.
Also I want to know that what is the bast format(base64,Byte[], or etc..) for image to store and check in SQL.
Thank you in Advance.