i have in excel file f1.xlsx like
a b
image 1 banane
image 2 pomme
i wanted to read to file in c sharp (c#) and convert image to Base64 could you help me please
i have in excel file f1.xlsx like
a b
image 1 banane
image 2 pomme
i wanted to read to file in c sharp (c#) and convert image to Base64 could you help me please
You can use ClosedXML for reading excel files.
You can write a loop to iterate the rows and access each column of your excel files and cast them to anything you want.
For base64 encoding and decoding, Check this out : Base64 encode/decode