I have converted gif image to byteArrey, but i am not able to convert from same byteArrey to gif Image. So please share your code to solve my problem.
thanks and regards,
Thirumal.
Comments: The following works without any problems: ```C# using (MagickImage first = new MagickImage("logo:")) { var bytes = first.ToByteArray(); using (MagickImage second = new MagickImage(bytes)) { second.Write(@"C:\test.gif"); } } ``` And can you please use the discussions board instead of creating an issue? If you are still experiencing this problem please start a topic there.
thanks and regards,
Thirumal.
Comments: The following works without any problems: ```C# using (MagickImage first = new MagickImage("logo:")) { var bytes = first.ToByteArray(); using (MagickImage second = new MagickImage(bytes)) { second.Write(@"C:\test.gif"); } } ``` And can you please use the discussions board instead of creating an issue? If you are still experiencing this problem please start a topic there.