This is a discussion on Add Frame to a gif within the C# Programming forums, part of the Software Development category; Hi,all. I want add some frames to a gif picture.But I didt fine any function to achieve it....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Magick.Init(); MagickNet.Image img = new MagickNet.Image(@"D:\13_jpg1.jpg"); img.Border(new Geometry(10,10)); img.Write(@"d:\border-result.jpg"); Magick.Term();
__________________ The MOSS Master of Solution Service Last edited by Anandavinayagam : 02-26-2008 at 01:57 AM. |
| |||
| Magick.Init(); MagickNet.ImageList imglist = new MagickNet.ImageList(); imglist.Add(@"D:\1.jpg"); imglist.Add(@"D:\2.jpg"); imglist.Add(@"D:\3.jpg"); imglist.Add(@"D:\4.jpg"); imglist.Write("d:\\animated.gif"); Magick.Term(); I think this will help
__________________ The MOSS Master of Solution Service Last edited by Anandavinayagam : 02-26-2008 at 01:57 AM. |
| |||
| You can do the same animation with delay like this in ImageMagick Quote:
__________________ The MOSS Master of Solution Service Last edited by Anandavinayagam : 02-26-2008 at 01:58 AM. |
| |||
| Thanks very much! I test this code, and I find a bug here. we can see as the picture in attachment.I use the pictures have been transparented by Transparent(). But we still can see the first picture presented under the second picture.How can I solve this bug? |
| |||
| You can use the GifDisposeMethod to remove the frames.. DisposeType contains BackgroundDispose PreviousDispose NoneDispose UndefinedDispose UnrecognizedDispose You can test...and use ur required type Quote:
__________________ The MOSS Master of Solution Service |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Cross-Frame Scripting | P.Sathiya | PHP Programming | 60 | 03-20-2008 04:09 AM |
| Frame works in php | venkatbi | PHP Programming | 10 | 12-05-2007 04:00 AM |
| .How do I make a link or form in one frame update another frame? | oxygen | HTML, CSS and Javascript Coding Techniques | 2 | 07-27-2007 04:02 AM |
| Goto the particular frame on Keystroke | oxygen | Flash Actionscript Programming | 1 | 07-21-2007 02:45 AM |
| Frame works in ajax | varghese | HTML, CSS and Javascript Coding Techniques | 1 | 07-17-2007 05:18 AM |