1. ASP.NET + C# + TabletPC ActiveX Control + JavaScript = Base64 to GIF
3. Insert GIF animated to RichEdit control....Could You Help Me Please
I have a problem on inserting a GIF to richedit, the problem is not viewing it, but it is playing it at richedit. I have a class that can play GIF animation, and I have converted it to an activeX, if I could pass this object to richedit control, and there I call its method so it can animated, do you have any suggestions on this. I wonder how MSN 6.0 plays EmotIcons. if you have other solutions, please help me on it.
4. How To Insert Gif Ani at Richedit Control ?
5. Animated Gif's in RichEdit Control
Hai
Iam looking to insert Animated Giffs into my rich edit control and please
let me know is there any way of doing it
Waiting for your reply
suresh
6. How can I put a transparent GIF over an other GIF in a Windows FORM ? - CSharp/C#
7. Changing image dimensions and saving as a gif - comments much appreciated
Hi,
Hope you can help me wit this one. I have to open either a ".jpg",
".bmp" or a "gif" and alter its dimensions and save the output as
a .gif.
Here is my attempt - I would greatly appreciate any comments/
suggestions/hints/things-to-be-award-of that you may like to offer
me:-
***** BEGIN CODE *****
//Firstly open the file into an image object
System.Drawing.Image img = Image.FromFile(fileName);
//Convert to bitmap with correct dimensions:
System.Drawing.Image newSizeImage = new Bitmap(img, 440, 60);
//Now convert the bitmap to a.gif
reSizeImage.Save("a.gif", System.Drawing.Imaging.ImageFormat.Gif);
****** END CODE ******
The only thing I notice is that the gif result looks a bit light. That
why I want some review of this approach. Perhaps I'm missing/
overlooking something - so any comments/suggestions that you may like
to offer me would be most appreciated.
Thanks in advance,
Al.