I’m writing a simple program to convert text to strings. One quick question, how can I open the image once I finished creating that? I don’t want to have pictureBox in the program.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I am assuming you mean that you want to load your image into your application without having to physically store it in a property inside of a PictureBox. To do so, you can use Bitmap.FromFile e.g.
This is given that you are are creating and then saving your image to an path on the file system.