Пример #1
0
        /// <summary>
        /// Allows the game to perform any initialization it needs to before starting to run.
        /// This is where it can query for any required services and load any non-graphic
        /// related content.  Calling base.Initialize will enumerate through any components
        /// and initialize them as well.
        /// </summary>
        protected override void Initialize()
        {
            // TODO: Add your initialization logic here

            base.Initialize();
            ssh = new ScreenShotHelper(GraphicsDevice);
            gif = new GifMaker(GraphicsDevice);

            mgLogoBox = new Rectangle((graphics.PreferredBackBufferWidth / 3) + 200, (graphics.PreferredBackBufferHeight / 3), 400, 400);
        }
Пример #2
0
        protected override void Initialize()
        {
            // TODO: Add your initialization logic here
            pp = GraphicsDevice.PresentationParameters;

            gif            = new GifMaker(GraphicsDevice);
            IsMouseVisible = true;

            base.Initialize();
        }
Пример #3
0
        static void Main(string[] args)
        {
            try
            {
                CommandLineArgs cmdLine = new CommandLineArgs(args);

                using (NpkReader npk = LoadNpk(cmdLine.NpkPath))
                {
                    NpkPath imgPath = GetImgPath(cmdLine, npk);

                    RawAnimation animationData = new RawAnimation();
                    animationData.Loop = true;

                    List <ConstAnimationFrame> frameInfo = GetFrameInfo(cmdLine, npk, imgPath);
                    animationData.Frames = frameInfo;

                    CreateOutputDir(cmdLine.OutputPath);

                    using (FileStream gifOutputStream = OpenOutput(cmdLine.OutputPath))
                        using (GifMaker giffer = new GifMaker(npk, disposeImageSource: false))
                        {
                            try
                            {
                                giffer.Create(animationData.AsConst(), gifOutputStream);
                            }
                            catch (Exception ex)
                            {
                                Console.Error.WriteLine("Error creating GIF: {0}", Utils.GetExceptionMessageWithInnerExceptions(ex));
                                Console.Error.WriteLine(ex.StackTrace);
                                giffer.Dispose();
                                gifOutputStream.Dispose();
                                npk.Dispose();
                                Environment.Exit(1);
                            }
                        }
                }

                Console.WriteLine("GIF saved to {0}", cmdLine.OutputPath);
            }
            catch (OptionException ex)
            {
                Console.Error.WriteLine(ex.Message);
                Console.Error.WriteLine("Run with -h for help");
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine("Unexpected error: {0}", Utils.GetExceptionMessageWithInnerExceptions(ex));
                Console.Error.WriteLine(ex.StackTrace);
            }
        }
Пример #4
0
        static void Main(string[] args)
        {
            string folderPath = @"C:\Users\sindr\Pictures\GifTest";

            string[] folderPaths = new string[] { folderPath,
                                                  folderPath + " - Copy",
                                                  folderPath + " - Copy (2)",
                                                  folderPath + " - Copy (3)" };
            string gifPath       = Path.Combine(folderPath, "Dank.gif");
            var    images        = GifMaker.GetImagesInDirectory(folderPath);
            int    frameDuration = 20;

            GifMaker.MakeGif(images, gifPath, frameDuration);

            Console.WriteLine("trying the multiMaker!");
            GifMaker.MakeDirectoryGifs(folderPaths, @"C:\Users\sindr\Pictures\", frameDuration);
        }
Пример #5
0
        static void Main(string[] args)
        {
            using (NpkReader npk = new NpkReader(@"C:\Neople\DFO\ImagePacks2\sprite_character_fighter_equipment_avatar_cap.NPK"))
            {
                npk.PreLoadAllSpriteFrameMetadata();
                List <NpkPath> imgs = npk.Frames.Where(kvp => kvp.Value.Any(f => f.CompressedLength == 84)).Select(kvp => kvp.Key).ToList();
                foreach (NpkPath img in imgs)
                {
                    IReadOnlyList <FrameInfo> frames = npk.Frames[img];
                    for (int i = 0; i < frames.Count; i++)
                    {
                        if (frames[i].CompressedLength == 84 && !frames[i].IsCompressed)
                        {
                            Console.WriteLine(string.Format("{0} {1}", img, i));
                        }
                    }
                }
            }

            Environment.Exit(0);

            foreach (string path in Directory.GetFiles(@"C:\Neople\DFO\ImagePacks2", "*.NPK"))
            {
                Console.WriteLine(path);
                using (NpkReader npk = new NpkReader(path))
                {
                    npk.PreLoadAllSpriteFrameMetadata();
                    foreach (NpkPath npkPath in npk.Frames.Keys)
                    {
                        var x = npk.Frames[npkPath];
                        for (int i = 0; i < x.Count; i++)
                        {
                            FrameInfo frame = x[i];
                            if (!frame.IsCompressed && frame.LinkFrame == null)
                            {
                                string pixelFormatString = frame.PixelFormat.ToString();
                                int    actualLength      = frame.Width * frame.Height * 2;
                                if (frame.PixelFormat == PixelDataFormat.EightEightEightEight)
                                {
                                    actualLength *= 2;
                                }
                                if (frame.CompressedLength != actualLength)
                                {
                                    Console.WriteLine("Pixel Format: {0,22}, Compressed Length: {1,9}, Actual Length: {2,9} {3} {4}", pixelFormatString, frame.CompressedLength, actualLength, npkPath, i);
                                }
                            }
                        }
                    }
                }
            }

            Environment.Exit(0);

            using (NpkReader npkReader = new NpkReader(@"C:\Neople\DFO\ImagePacks2\sprite_monster_impossible_bakal.NPK"))
                using (NpkReader coolReader = new NpkReader(@"C:\Neople\DFO\ImagePacks2\sprite_character_swordman_effect_sayaex.NPK"))
                {
                    DFO.Common.Images.Image image = npkReader.GetImage("monster/impossible_bakal/ashcore.img", 0);
                    //Image image2 = npkReader.GetImage("worldmap/act1/elvengard.img", 1);
                    using (Bitmap bitmap = new Bitmap(image.Attributes.Width, image.Attributes.Height))
                    {
                        BitmapData raw = bitmap.LockBits(new Rectangle(0, 0, image.Attributes.Width, image.Attributes.Height), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
                        unsafe
                        {
                            byte *ptr = (byte *)raw.Scan0;
                            // RGBA -> BGRA (pixels in the bitmap have endianness)
                            int width  = image.Attributes.Width;
                            int height = image.Attributes.Height;
                            int stride = raw.Stride;
                            for (int x = 0; x < width; x++)
                            {
                                for (int y = 0; y < height; y++)
                                {
                                    ptr[y * stride + x * 4 + 0] = image.PixelData[y * width * 4 + x * 4 + 2];
                                    ptr[y * stride + x * 4 + 1] = image.PixelData[y * width * 4 + x * 4 + 1];
                                    ptr[y * stride + x * 4 + 2] = image.PixelData[y * width * 4 + x * 4 + 0];
                                    ptr[y * stride + x * 4 + 3] = image.PixelData[y * width * 4 + x * 4 + 3];
                                }
                            }
                        }
                        bitmap.UnlockBits(raw);
                        bitmap.Save(@"output.png", System.Drawing.Imaging.ImageFormat.Png);


                        RawAnimation animationData = new RawAnimation();
                        animationData.Loop   = true;
                        animationData.Frames = new List <ConstAnimationFrame>()
                        {
                            new AnimationFrame()
                            {
                                DelayInMs = 1000, Image = new ImageIdentifier("worldmap/act1/elvengard.img", 0)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 1000, Image = new ImageIdentifier("worldmap/act1/elvengard.img", 1)
                            }.AsConst()
                        };

                        RawAnimation cool = new RawAnimation();
                        cool.Loop   = true;
                        cool.Frames = new List <ConstAnimationFrame>()
                        {
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 0)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 1)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 2)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 3)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 4)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 5)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 6)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 7)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 8)
                            }.AsConst(),
                            new AnimationFrame()
                            {
                                DelayInMs = 100, Image = new ImageIdentifier("character/swordman/effect/sayaex/wingdodge.img", 9)
                            }.AsConst(),
                        };

                        using (GifMaker giffer = new GifMaker(npkReader, disposeImageSource: false))
                            using (GifMaker coolGiffer = new GifMaker(coolReader, disposeImageSource: false))
                                using (FileStream gifOutputStream = new FileStream("output.gif", FileMode.Create, FileAccess.ReadWrite, FileShare.None))
                                    using (FileStream coolGifOutputStream = new FileStream("cool.gif", FileMode.Create, FileAccess.ReadWrite, FileShare.None))
                                    {
                                        giffer.Create(animationData.AsConst(), gifOutputStream);
                                        coolGiffer.Create(cool.AsConst(), coolGifOutputStream);
                                    }
                    }

                    Console.WriteLine("Success!");
                }
        }
        private void Converttogif_btn_click(object sender, RoutedEventArgs e)
        {
            VideoFileReader videoreader = new VideoFileReader();

            // open video file
            videoreader.Open(openFileDialog1.FileName.ToString());


            GifBitmapEncoder thegifencoder = new GifBitmapEncoder();

            string filename = "thegiffile.gif";

            if (File.Exists(filename))
            {
                File.Delete(filename);
            }

            using (var gif = File.OpenWrite("thegiffile.gif"))
                using (var encoder = new GifMaker(gif))       // customlibs


                    for (int i = 0; i < framecount; i++)
                    {
                        Bitmap videoFrame = videoreader.ReadVideoFrame();
                        //insert jpeg commpression here.

                        BitmapSource imagesrc = Converttobmpscr(videoFrame);

                        MemoryStream ms = new MemoryStream(); //saving to memory instead of file

                        JpegBitmapEncoder jpegencoder = new JpegBitmapEncoder();
                        jpegencoder.FlipHorizontal = horizontalflip;
                        jpegencoder.FlipVertical   = verticalflip;
                        jpegencoder.QualityLevel   = qualitylevel;
                        jpegencoder.Rotation       = rotationselected;
                        jpegencoder.Frames.Add(BitmapFrame.Create(imagesrc));
                        jpegencoder.Save(ms);

                        System.Drawing.Image compr_img = System.Drawing.Image.FromStream(ms);

                        //Bitmap compr_frame = new Bitmap(compr_img);

                        if (i % framesskipped == 0)
                        {
                            //IntPtr bmp = compr_frame.GetHbitmap();
                            //BitmapSource src = Imaging.CreateBitmapSourceFromHBitmap(
                            //bmp,
                            //IntPtr.Zero,
                            //Int32Rect.Empty,
                            //BitmapSizeOptions.FromEmptyOptions());
                            //thegifencoder.Frames.Add(BitmapFrame.Create(src));

                            encoder.AddFrame(compr_img);
                        }

                        videoFrame.Dispose();
                        jpegencoder = null;
                    }

            videoreader.Close();

            //using (FileStream fs = new FileStream("thegiffile.gif", FileMode.Create))            // windows libs
            //{
            //    thegifencoder.Save(fs);
            //}

            thegifencoder = null;
        }