C# read a JPEG from file and store as an Image

后端 未结 1 1068
难免孤独
难免孤独 2020-12-29 18:52

How can I read a JPEG on my filesystem and store it as a System.Drawing.Image within my C# code?

相关标签:
1条回答
  • 2020-12-29 19:36
    Image i = Image.FromFile("image.jpg");
    

    If you need more information, here is the link.

    0 讨论(0)
提交回复
热议问题