I keep getting an error in Visual Studio 2013 (.net 4.0 application) that indicates: FromStream is not a member of MyProjectName.Image
I'm trying to use the File Upload Control and use this example code I found to adjust the Orientation. My imports section looks like this:
Imports System.Collections.Generic
Imports System.Data.SqlClient
Imports System.Web.Services
Imports System.Collections
Imports System.Configuration
Imports System.Data
Imports System.Web
Imports System.Web.Security
Imports System.Web.UI
Imports System.Web.UI.HtmlControls
Imports System.Web.UI.WebControls
Imports System.Web.UI.WebControls.WebParts
Imports System.IO
' this is for the file upload
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Imaging
My current image orientation code looks like this..
'Adjust Orientation section....
Dim IOstream As System.IO.Stream
...
Go to the complete details ...