473,395 Members | 1,554 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

about image rotating

Hello all, how could I rotate a server side image in asp.net and show it in
web page? Thanks.

Jun 27 '08 #1
5 3426
Well, I'm not going to write the whole function for you, but you basically
need to create an *.aspx page that returns an image/gif. In the Load event,
you will simply use the classes in the System.Drawing namespace to rotate
it. If you have never created an *.aspx that returns an image/gif, you
basically use the Save() method of a Bitmap to output the image to the
Response.OutputStream like the following:

mybitmap.Save(Response.OutputStream, ImageFormat.Gif)

I'm not going to going into the other details of the steps you will need to
take, but most of them are reasonably simple, and if you can find a good
website I think you'll be able to figure it out. Good Luck!
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Michael" <Mi**********@noemail.noemailwrote in message
news:OK**************@TK2MSFTNGP02.phx.gbl...
Hello all, how could I rotate a server side image in asp.net and show it
in web page? Thanks.

Jun 27 '08 #2
Hi Michael,

From your description, you're wantting to display some image files(at
server-side) as rotated format on ASP.NET web page, correct?

If so, I think the proper means is use the .NET GDI+ classes to perform
transforming on the certain images. You can generate an rotated image
stream and output it on page(via an httphander or page...)

Here are some good web articles which has introduced some code and examples
on GDI+ image transformation:

#Matrix Transformation of Images in C#, using .NET GDI+
http://www.codeproject.com/KB/GDI-pl...formation.aspx

#Image Transformation in C# with GDI+
http://www.c-sharpcorner.com/UploadF...04121920050548
03AM/Transformations04.aspx

#NET and GDI+: Transforming Images on the Server - Introduction and
Examples, Part II...
http://www.dotnetjohn.com/articles.aspx?articleid=115

Also, if you're not familar with emiting image stream via httphandler in
ASP.NET, here are some tech articles on this:

http://www.codeproject.com/KB/web-im...umbnailer.aspx

http://www.c-sharpcorner.com/UploadF...rImages1115200
5062705AM/HTTPHandlersForImages.aspx

http://msdn.microsoft.com/en-us/magazine/cc163988.aspx

Hope this helps.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Reply-To: "Michael" <Mi**********@noemail.noemail>
From: "Michael" <Mi**********@noemail.noemail>
Subject: about image rotating
Date: Tue, 24 Jun 2008 09:51:42 +0800
>
Hello all, how could I rotate a server side image in asp.net and show it
in
>web page? Thanks.

Jun 27 '08 #3
On Jun 24, 3:48 pm, stch...@online.microsoft.com (Steven Cheng [MSFT])
wrote:
Hi Michael,

From your description, you're wantting to display some image files(at
server-side) as rotated format on ASP.NET web page, correct?

If so, I think the proper means is use the .NET GDI+ classes to perform
transforming on the certain images. You can generate an rotated image
stream and output it on page(via an httphander or page...)

Here are some good web articles which has introduced some code and examples
on GDI+ image transformation:

#Matrix Transformation of Images in C#, using .NET GDI+http://www.codeproject.com/KB/GDI-pl...formation.aspx

#Image Transformation in C# with GDI+http://www.c-sharpcorner.com/UploadF...mations0412192...
03AM/Transformations04.aspx

#NET and GDI+: Transforming Images on the Server - Introduction and
Examples, Part II...http://www.dotnetjohn.com/articles.aspx?articleid=115

Also, if you're not familar with emiting image stream via httphandler in
ASP.NET, here are some tech articles on this:

http://www.codeproject.com/KB/web-im...umbnailer.aspx

http://www.c-sharpcorner.com/UploadF...dlersForImages...
5062705AM/HTTPHandlersForImages.aspx

http://msdn.microsoft.com/en-us/magazine/cc163988.aspx

Hope this helps.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.

==================================================
Get notification to my posts through email? Please refer tohttp://msdn.microsoft.com/subscriptions/managednewsgroups/default.asp...
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) athttp://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
Reply-To: "Michael" <Michael_M...@noemail.noemail>
From: "Michael" <Michael_M...@noemail.noemail>
Subject: about image rotating
Date: Tue, 24 Jun 2008 09:51:42 +0800
Hello all, how could I rotate a server side image in asp.net and show it
in
web page? Thanks.
if you just want to rotate or flip it by the standard 90/180/270 then
you could try

System.Drawing.Image image =
System.Drawing.Image.FromFile(fileInPath);
image.RotateFlip(RotateFlipType.xxxxx);
image.Save(fileOutPath)
Jun 27 '08 #4
Thanks to everyone's response and informaton. Image.RotateFlip resolved the
issue.

"densial" <de*****@gmail.comwrote in message
news:89**********************************@i18g2000 prn.googlegroups.com...
On Jun 24, 3:48 pm, stch...@online.microsoft.com (Steven Cheng [MSFT])
wrote:
>Hi Michael,

From your description, you're wantting to display some image files(at
server-side) as rotated format on ASP.NET web page, correct?

If so, I think the proper means is use the .NET GDI+ classes to perform
transforming on the certain images. You can generate an rotated image
stream and output it on page(via an httphander or page...)

Here are some good web articles which has introduced some code and
examples
on GDI+ image transformation:

#Matrix Transformation of Images in C#, using .NET
GDI+http://www.codeproject.com/KB/GDI-pl...formation.aspx

#Image Transformation in C# with
GDI+http://www.c-sharpcorner.com/UploadF...mations0412192...
03AM/Transformations04.aspx

#NET and GDI+: Transforming Images on the Server - Introduction and
Examples, Part II...http://www.dotnetjohn.com/articles.aspx?articleid=115

Also, if you're not familar with emiting image stream via httphandler in
ASP.NET, here are some tech articles on this:

http://www.codeproject.com/KB/web-im...umbnailer.aspx

http://www.c-sharpcorner.com/UploadF...dlersForImages...
5062705AM/HTTPHandlersForImages.aspx

http://msdn.microsoft.com/en-us/magazine/cc163988.aspx

Hope this helps.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you.
Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer
tohttp://msdn.microsoft.com/subscriptions/managednewsgroups/default.asp...
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS)
athttp://msdn.microsoft.com/subscriptions/support/default.aspx.
================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
>Reply-To: "Michael" <Michael_M...@noemail.noemail>
From: "Michael" <Michael_M...@noemail.noemail>
Subject: about image rotating
Date: Tue, 24 Jun 2008 09:51:42 +0800
>Hello all, how could I rotate a server side image in asp.net and show it
in
>web page? Thanks.

if you just want to rotate or flip it by the standard 90/180/270 then
you could try

System.Drawing.Image image =
System.Drawing.Image.FromFile(fileInPath);
image.RotateFlip(RotateFlipType.xxxxx);
image.Save(fileOutPath)
Jun 27 '08 #5
Thanks for your quick reply Michael,

I'm glad that it helps you. If you need any further help, welcome to post
here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

--------------------
>Reply-To: "Michael" <Mi**********@noemail.noemail>
From: "Michael" <Mi**********@noemail.noemail>
>In-Reply-To:
<89**********************************@i18g2000prn. googlegroups.com>
>Subject: Re: about image rotating
Date: Tue, 24 Jun 2008 15:34:46 +0800
>
Thanks to everyone's response and informaton. Image.RotateFlip resolved
the
>issue.

"densial" <de*****@gmail.comwrote in message
news:89**********************************@i18g200 0prn.googlegroups.com...
>On Jun 24, 3:48 pm, stch...@online.microsoft.com (Steven Cheng [MSFT])
wrote:
>>Hi Michael,

From your description, you're wantting to display some image files(at
server-side) as rotated format on ASP.NET web page, correct?

If so, I think the proper means is use the .NET GDI+ classes to perform
transforming on the certain images. You can generate an rotated image
stream and output it on page(via an httphander or page...)

Here are some good web articles which has introduced some code and
examples
on GDI+ image transformation:

#Matrix Transformation of Images in C#, using .NET
GDI+http://www.codeproject.com/KB/GDI-pl...formation.aspx

#Image Transformation in C# with
GDI+http://www.c-sharpcorner.com/UploadF...mations0412192...
>>03AM/Transformations04.aspx

#NET and GDI+: Transforming Images on the Server - Introduction and
Examples, Part
II...http://www.dotnetjohn.com/articles.aspx?articleid=115
>>>
Also, if you're not familar with emiting image stream via httphandler in
ASP.NET, here are some tech articles on this:

http://www.codeproject.com/KB/web-im...umbnailer.aspx

http://www.c-sharpcorner.com/UploadF...dlersForImages...
5062705AM/HTTPHandlersForImages.aspx

http://msdn.microsoft.com/en-us/magazine/cc163988.aspx

Hope this helps.

Sincerely,

Steven Cheng
Jun 27 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: fdsl ysnh | last post by:
--- python-list-request@python.orgдµÀ: > Send Python-list mailing list submissions to > python-list@python.org > > To subscribe or unsubscribe via the World Wide Web, > visit >...
5
by: John | last post by:
I am rotating images at one location of my web site. My problem is if I set the width and height of the new image before I show the new image, the old image is stretched first to the new image...
1
by: Grunt | last post by:
Hi, I have been trying to put together a rotating banner. the code works but I am having a problem with the caching of the banner images. no matter what I try the page is constantly reloading the...
14
by: mikeoley | last post by:
Why would this script below work on an html page: http://www.eg-designdev.com/aircylinders/test.htm But not a java page such as this: "http://www.eg-designdev.com/aircylinders/index3.jsp" Or...
5
by: Ricardo Furtado | last post by:
I'm trying, for a week or two, to create a procedure in order to rotate the image in any picturebox control in a cephalometry software. I've found a web site that shows how that can be done:...
9
by: Kraken | last post by:
Hi, i have an assignment to open PPM images and prompt the user for either brightening, flipping or rotating the image. Ive done the brightening and flipping, but i cant get the rotating to work....
1
by: kennykenn | last post by:
Im having trouble startin to develop a rotating image banner, I have coded part of it (only pulling image from a db). My aim is to print an image to part of my web page, allow it to screen for x...
6
by: swethak | last post by:
Hi, I displayed the image taken from database.How to raotate that image using javascript.plz tell that how to start the logic.plz tell that some reference websites.
0
by: harryusa | last post by:
I am experimenting with the rotate function and so far I can't get my code to return anything but the URL of my script. Here it is: <?php // The file you are rotating $image =...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.