This is a discussion on ImageMagick Magicknet psd to gif C#.NET Web Application within the C# Programming forums, part of the Software Development category; ImageMagick Magicknet psd to gif C#.net Web Application hi i want to convert psd into gif image...,need to ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| ImageMagick Magicknet psd to gif C#.net Web Application hi i want to convert psd into gif image...,need to add some text to that image ,need to rotate the text to some angle.... can u pls ... Last edited by kingmaker : 01-07-2008 at 09:41 PM. |
| Sponsored Links |
| |||
| hey.....i have the code for the same Magick.Init(); MagickNet.Image img = new MagickNet.Image(new StreamReader(@"d:\template-img.psd").BaseStream); //Image this text MagickNet.Image imgText1 = new MagickNet.Image(new Geometry(200, 30), new Color(System.Drawing.Color.Black)); imgText1.FillColor = new Color(System.Drawing.Color.Red); imgText1.Antialias = false; imgText1.Annotate("Some Text", GravityType.NorthWestGravity); int degree = 90; imgText1.Rotate(degree); imgText1.Transparent(new Color(System.Drawing.Color.Black)); img.Composite(imgText1, 0, 0, CompositeOperator.AtopCompositeOp); img.Write(@"d:\output.gif"); Magick.Term(); see the outputoutput.gif
__________________ The MOSS Master of Solution Service |
| |||
| ok..thanks..its works fine Last edited by kingmaker : 01-07-2008 at 10:01 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/c-programming/4931-imagemagick-magicknet-psd-gif-c-net-web-application.html | |||
| Posted By | For | Type | Date |
| Software Development - C# Programming at DiscussWeb.com | This thread | Refback | 02-21-2008 02:09 PM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Addnoise using ImageMagick MagickNet in C#.NET | Anandavinayagam | C# Programming | 1 | 09-20-2008 02:24 AM |
| Can anyone mail me a MagickNet.src.1.0.0.3.zip or MagickNet.dll | Savior | C# Programming | 8 | 09-16-2008 01:34 AM |
| ImageMagick MagickNet C# WebApplication | Anandavinayagam | C# Programming | 80 | 08-04-2008 01:01 AM |
| Chop Image using ImageMagick MagickNet | Anandavinayagam | C# Programming | 3 | 01-08-2008 04:32 AM |
| ImageMagick | gattuso | PHP Programming | 2 | 07-19-2007 12:02 PM |