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: And that is also working: ```C# using (MagickImageCollection first = new MagickImageCollection(Files.RoseSparkleGIF)) { var bytes = first.ToByteArray(); using (MagickImageCollection second = new MagickImageCollection(bytes)) { second.Write(@"C:\test.gif"); } } ``` If you want to continue this conversation please start a new discussion.
thanks and regards,
Thirumal.
Comments: And that is also working: ```C# using (MagickImageCollection first = new MagickImageCollection(Files.RoseSparkleGIF)) { var bytes = first.ToByteArray(); using (MagickImageCollection second = new MagickImageCollection(bytes)) { second.Write(@"C:\test.gif"); } } ``` If you want to continue this conversation please start a new discussion.