Hello all
I am working on a project that convert images to text , and load them from text , so i can save them online then load them as image . But if u could just give me a code of a project with a textbox where i write the text instead of downloading it it will be more helpful because i know how to make the upload and load the text.

Please could u give me a help for the code .

Language : Visual basic

Thanks .

Recommended Answers

All 3 Replies

See if this helps.

'// Save Image as .txt File.
PictureBox1.Image.Save("C:/test.txt", Imaging.ImageFormat.Png)
'// Load Image from .txt File.
PictureBox1.Image = Image.FromFile("C:/test.txt")

See if this helps.

'// Save Image as .txt File.
PictureBox1.Image.Save("C:/test.txt", Imaging.ImageFormat.Png)
'// Load Image from .txt File.
PictureBox1.Image = Image.FromFile("C:/test.txt")

Thanks mate ! it did work it's what i whant ! :D
i am new here could u plz tell me how to make the Thread as solved ?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.