Exemplo n.º 1
0
        internal static BitmapFrame GetRenderedBitmapFrame()
        {
            try
            {
                var sauce  = UILogic.ConfigureWindows.GetMainWindow.MainImage.Source as BitmapSource;
                var effect = UILogic.ConfigureWindows.GetMainWindow.MainImage.Effect;

                var rectangle = new System.Windows.Shapes.Rectangle
                {
                    Fill   = new ImageBrush(sauce),
                    Effect = effect
                };

                var sz = new Size(sauce.PixelWidth, sauce.PixelHeight);
                rectangle.Measure(sz);
                rectangle.Arrange(new Rect(sz));

                var rtb = new RenderTargetBitmap(sauce.PixelWidth, sauce.PixelHeight, sauce.DpiX, sauce.DpiY, PixelFormats.Default);
                rtb.Render(rectangle);


                return(BitmapFrame.Create(rtb));
            }
            catch (Exception) { return(null); }
        }
Exemplo n.º 2
0
        public static DrawingGroup CreateBaseImage(Base baze, String url, bool withShader = true)
        {
            DrawingGroup g = null;

            baze.SceneMgr.Invoke(new Action(() =>
            {
                BitmapImage bi = new BitmapImage();
                bi.BeginInit();
                bi.UriSource = new Uri(url);
                bi.EndInit();

                g = new DrawingGroup();
                ImageDrawing img = new ImageDrawing();
                img.Rect         = new Rect(baze.Size);

                if (withShader)
                {
                    ColorReplaceEffect effect = new ColorReplaceEffect();
                    effect.ColorToOverride    = Colors.White;
                    effect.ColorReplace       = baze.Owner.GetPlayerColor();

                    RenderTargetBitmap rtb = new RenderTargetBitmap((int)baze.Size.Width * 2, (int)baze.Size.Height * 2, 96, 96, PixelFormats.Pbgra32);

                    System.Windows.Shapes.Rectangle visual = new System.Windows.Shapes.Rectangle();
                    visual.Fill   = new ImageBrush(bi);
                    visual.Effect = effect;

                    Size sz = new Size(baze.Size.Width * 2, baze.Size.Height * 2);
                    visual.Measure(sz);
                    visual.Arrange(new Rect(sz));

                    rtb.Render(visual);
                    img.ImageSource = rtb;
                }
                else
                {
                    img.ImageSource = bi;
                }

                TransformGroup tg = new TransformGroup();
                tg.Children.Add(new TranslateTransform(baze.Position.X, baze.Position.Y));
                g.Transform = tg;
                g.Children.Add(img);
            }));

            return(g);
        }
        public Visual CreateVisual(IRenderContext context)
        {
            Rectangle rectangle = new Rectangle
            {
                Width           = PageWidth + Margin,
                Height          = PageHeight + Margin,
                Stroke          = Brushes.DarkGray,
                StrokeDashArray = new DoubleCollection {
                    2, 2
                },
            };

            rectangle.RenderTransform = new TranslateTransform(Center.X - (rectangle.Width * 0.5),
                                                               Center.Y - (rectangle.Height * 0.5));
            rectangle.Measure(new Size(rectangle.Width, rectangle.Height));
            return(rectangle);
        }
Exemplo n.º 4
0
        public static DrawingGroup CreateMineImage(SingularityMine mine)
        {
            DrawingGroup g = null;

            mine.SceneMgr.Invoke(new Action(() =>
            {
                BitmapImage bi = new BitmapImage();
                bi.BeginInit();

                bi.UriSource        = new Uri("pack://application:,,,/resources/images/projectiles/mine.png");
                bi.DecodePixelWidth = mine.Radius * 4;
                bi.EndInit();

                g = new DrawingGroup();
                ImageDrawing img = new ImageDrawing();
                img.Rect         = new Rect(new Size(mine.Radius * 2, mine.Radius * 2));

                ColorReplaceEffect effect = new ColorReplaceEffect();
                effect.ColorToOverride    = Colors.White;
                effect.ColorReplace       = mine.Owner.GetPlayerColor();

                RenderTargetBitmap rtb = new RenderTargetBitmap((int)mine.Radius * 2, (int)mine.Radius * 2, 96, 96, PixelFormats.Pbgra32);

                System.Windows.Shapes.Rectangle visual = new System.Windows.Shapes.Rectangle();
                visual.Fill   = new ImageBrush(bi);
                visual.Effect = effect;

                Size sz = new Size(mine.Radius * 2, mine.Radius * 2);
                visual.Measure(sz);
                visual.Arrange(new Rect(sz));

                rtb.Render(visual);
                img.ImageSource = rtb;

                g = new DrawingGroup();
                TransformGroup tg = new TransformGroup();
                tg.Children.Add(new TranslateTransform(mine.Position.X, mine.Position.Y));
                tg.Children.Add(new RotateTransform(mine.Rotation, mine.Radius, mine.Radius));
                g.Transform = tg;
                g.Children.Add(img);
            }));

            return(g);
        }
Exemplo n.º 5
0
        private static RenderTargetBitmap RenderScreenAndSave(UserControl view)
        {
            System.Windows.Size size = new System.Windows.Size(view.RenderSize.Width, view.RenderSize.Height);
            RenderTargetBitmap  rtb  = new RenderTargetBitmap((int)size.Width, (int)size.Height, 96, 96, System.Windows.Media.PixelFormats.Pbgra32);

            System.Windows.Shapes.Rectangle vRect = new System.Windows.Shapes.Rectangle()
            {
                Width  = size.Width,
                Height = size.Height,
                Fill   = System.Windows.Media.Brushes.White
            };
            vRect.Measure(size);
            vRect.Arrange(new Rect(size));
            rtb.Render(vRect);

            view.Measure(size);
            view.Arrange(new Rect(size));
            rtb.Render(view);

            return(rtb);
        }
Exemplo n.º 6
0
        public static BitmapSource GetMinContainBitmap(this IDictionary <FrameworkElement, FrameworkElement> dictionary, SolidColorBrush backgrand = null)
        {
            var rect          = dictionary.Values.GetMinContainRect();
            var relationPoint = new Point(rect.X, rect.Y);

            rect.X = rect.Y = 0;

            var drawingVisual = new DrawingVisual();

            using (var context = drawingVisual.RenderOpen())
            {
                foreach (var item in dictionary)
                {
                    var viewbox = item.Key.GetChildViewbox(item.Value);
                    var brush   = new VisualBrush(item.Key)
                    {
                        ViewboxUnits = BrushMappingMode.RelativeToBoundingBox,
                        Viewbox      = viewbox,
                    };
                    context.DrawRectangle(brush, null, item.Value.GetRelationRect(relationPoint));
                }
            }

            var renderBitmap = new RenderTargetBitmap((int)rect.Width, (int)rect.Height, 96, 96, PixelFormats.Pbgra32);
            var rectangle    = new System.Windows.Shapes.Rectangle
            {
                Width  = (int)rect.Width,
                Height = (int)rect.Height,
                Fill   = backgrand ?? Brushes.Transparent,
            };

            rectangle.Measure(rect.Size);
            rectangle.Arrange(new Rect(rect.Size));

            renderBitmap.Render(rectangle);
            renderBitmap.Render(drawingVisual);

            return(renderBitmap);
        }
Exemplo n.º 7
0
        private void RenderGraph()
        {
            ClearRenderTargetBitmap(_heatMapGraph, Brushes.White);

            const double xAxisOffset = 250;
            const double yAxisOffset = 500;
            const double topOffset = 50;
            const double rightOffset = 250;

            var xAxisLength = _heatMapGraph.PixelWidth - (int)xAxisOffset - (int)rightOffset;
            var yAxisLength = _heatMapGraph.PixelHeight - (int)yAxisOffset - (int)topOffset;
            const double axisThickness = 10;
            var axisPen = new Pen(Brushes.Black, axisThickness);
            var axisTickPen = new Pen(Brushes.Black, axisThickness / 2);

            DrawHeatMap();
            var heatMapRect = new Rectangle
            {
                Fill = new ImageBrush(_heatMap) { Stretch = Stretch.Uniform },
                Effect = _heatMapColourEffect
            };

            var heatMapRectSize = new Size(xAxisLength, yAxisLength);

            heatMapRect.Measure(heatMapRectSize);
            heatMapRect.Arrange(new Rect(new Point(xAxisOffset + 5, topOffset), heatMapRectSize));

            _heatMapGraph.Render(heatMapRect);

            var heatMapKeyWidth = xAxisLength;
            const int heatMapKeyHeight = 100;

            var heatMapKeyRect = new Rectangle
            {
                Fill = new ImageBrush(DrawHeatKey(heatMapKeyWidth, heatMapKeyHeight)),
                Effect = _heatMapColourEffect
            };

            var heatMapKeySize = new Size(heatMapKeyWidth, heatMapKeyHeight);

            heatMapKeyRect.Measure(heatMapKeySize);
            heatMapKeyRect.Arrange(new Rect(new Point(xAxisOffset + 5, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 150), heatMapKeySize));

            _heatMapGraph.Render(heatMapKeyRect);

            var drawingVisual = new DrawingVisual();
            var textTypeFace = new Typeface(new FontFamily("Arial"), FontStyles.Normal, FontWeights.Normal, FontStretches.Normal);
            const double headerFontSize = 80d;
            const double fontSize = 40d;
            const int numberOfTicks = 10;
            var fontBrush = Brushes.Black;
            using (var context = drawingVisual.RenderOpen())
            {
                //Y Axis
                context.DrawLine(axisPen, new Point(xAxisOffset, topOffset), new Point(xAxisOffset, topOffset + yAxisLength));
                //X Axis
                context.DrawLine(axisPen, new Point(xAxisOffset - 5, topOffset + yAxisLength), new Point(xAxisOffset + xAxisLength + 5, topOffset + yAxisLength));

                context.DrawText(new FormattedText(MinValue.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + 5, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 250));
                context.DrawText(new FormattedText(MaxValue.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + 5 + xAxisLength, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 250));

                context.DrawText(new FormattedText("Time", CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + (xAxisLength / 2), topOffset + yAxisLength + 60));

                var dateDistance = (MaxTimestamp - MinTimestamp).Ticks / numberOfTicks;
                for (var i = 0; i < numberOfTicks; i++)
                {
                    var date = MinTimestamp + new TimeSpan(i * dateDistance);
                    var xValue = (1 - ((MaxTimestamp - date).TotalSeconds / (MaxTimestamp - MinTimestamp).TotalSeconds)) * xAxisLength + xAxisOffset;
                    context.DrawLine(axisTickPen, new Point(xValue, topOffset + yAxisLength), new Point(xValue, topOffset + yAxisLength + 20));
                    context.DrawText(new FormattedText(date.ToString("yyyy/MM/dd HH:mm"), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, fontSize, fontBrush), new Point(xValue, topOffset + yAxisLength + 10));
                }

                context.PushTransform(new RotateTransform(90));

                context.DrawText(new FormattedText("Depth", CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point((topOffset + (yAxisLength / 2)), -headerFontSize * 2));

                context.Pop();

                if (_depths != null)
                    foreach (var depthYValue in _depths)
                    {
                        context.DrawText(new FormattedText(depthYValue.Depth.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, fontSize, fontBrush), new Point(xAxisOffset - 100, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength));
                        context.DrawLine(axisTickPen, new Point(xAxisOffset - 25, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength + (axisTickPen.Thickness / 2)), new Point(xAxisOffset, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength + (axisTickPen.Thickness / 2)));
                    }
            }

            _heatMapGraph.Render(drawingVisual);
        }
Exemplo n.º 8
0
        private void SnapshotCurrentImage()
        {
            if (IsComicLoaded())
            {
                _cacheManager.UseCurrentImageStream((stream, imageName, containerName) =>
                {
                    var fileName = containerName + " - " + imageName;
                    if (!(Directory.Exists(SNAPSHOT_PATH)))
                    {
                        Directory.CreateDirectory(SNAPSHOT_PATH);
                    }

                    var shaderEffect = imageViewbox.Effect;
                    // If no effect is applied, then save source image directly to snapshot folder
                    // otherwise, use image with effect applied and save as jpeg to snapshot folder
                    if (shaderEffect == null)
                    {
                        var filePath = IOPath.Combine(SNAPSHOT_PATH, fileName);

                        // No shader effects are applied so write the source image stream directly to file
                        using (var fileStream = File.OpenWrite(filePath))
                        {
                            stream.CopyTo(fileStream);
                        }
                    }
                    else
                    {
                        //Note: Effect must be compiled to PixelShader version 2.0 otherwise, the effect
                        // will be ignored when RenderTargetBitmap() is used. Limitation of WPF.
                        var imageSource = (BitmapSource)comicImage.Source;

                        // Create a Rectangle shape, fill its background with the current comic image
                        // and apply the same shader effect
                        var rectangle    = new System.Windows.Shapes.Rectangle();
                        rectangle.Fill   = new ImageBrush(imageSource);
                        rectangle.Effect = shaderEffect;

                        // Resize the Rectangle to full image size
                        var size = new Size(imageSource.PixelWidth, imageSource.PixelHeight);
                        rectangle.Measure(size);
                        rectangle.Arrange(new Rect(size));

                        //TODO: 96 is hardcoded for my monitor. Make it device dependent
                        //      or find a different method to save effect on image
                        var renderTargetBitmap = new RenderTargetBitmap(
                            imageSource.PixelWidth,
                            imageSource.PixelHeight,
                            96,
                            96,
                            PixelFormats.Pbgra32);

                        renderTargetBitmap.Render(rectangle);

                        var rerenderedFilename = IOPath.GetFileNameWithoutExtension(fileName);
                        var encoder            = new JpegBitmapEncoder
                        {
                            QualityLevel = 95
                        };

                        var bitmapFrame = BitmapFrame.Create(renderTargetBitmap);
                        encoder.Frames.Add(bitmapFrame);

                        var filePath = IOPath.Combine(SNAPSHOT_PATH, rerenderedFilename + ".jpeg");
                        using (var fileStream = File.OpenWrite(filePath))
                        {
                            encoder.Save(fileStream);
                        }
                    }

                    DisplayMessage(string.Format("Snapshot '{0}'", fileName));
                });
            }
        }
Exemplo n.º 9
0
        private void RenderGraph()
        {
            ClearRenderTargetBitmap(_heatMapGraph, Brushes.White);


            const double xAxisOffset = 250;
            const double yAxisOffset = 500;
            const double topOffset   = 50;
            const double rightOffset = 250;

            var          xAxisLength   = _heatMapGraph.PixelWidth - (int)xAxisOffset - (int)rightOffset;
            var          yAxisLength   = _heatMapGraph.PixelHeight - (int)yAxisOffset - (int)topOffset;
            const double axisThickness = 10;
            var          axisPen       = new Pen(Brushes.Black, axisThickness);
            var          axisTickPen   = new Pen(Brushes.Black, axisThickness / 2);

            DrawHeatMap();
            var heatMapRect = new Rectangle
            {
                Fill = new ImageBrush(_heatMap)
                {
                    Stretch = Stretch.Uniform
                },
                Effect = _heatMapColourEffect
            };

            var heatMapRectSize = new Size(xAxisLength, yAxisLength);

            heatMapRect.Measure(heatMapRectSize);
            heatMapRect.Arrange(new Rect(new Point(xAxisOffset + 5, topOffset), heatMapRectSize));

            _heatMapGraph.Render(heatMapRect);

            var       heatMapKeyWidth  = xAxisLength;
            const int heatMapKeyHeight = 100;

            var heatMapKeyRect = new Rectangle
            {
                Fill   = new ImageBrush(DrawHeatKey(heatMapKeyWidth, heatMapKeyHeight)),
                Effect = _heatMapColourEffect
            };

            var heatMapKeySize = new Size(heatMapKeyWidth, heatMapKeyHeight);

            heatMapKeyRect.Measure(heatMapKeySize);
            heatMapKeyRect.Arrange(new Rect(new Point(xAxisOffset + 5, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 150), heatMapKeySize));

            _heatMapGraph.Render(heatMapKeyRect);

            var          drawingVisual  = new DrawingVisual();
            var          textTypeFace   = new Typeface(new FontFamily("Arial"), FontStyles.Normal, FontWeights.Normal, FontStretches.Normal);
            const double headerFontSize = 80d;
            const double fontSize       = 40d;
            const int    numberOfTicks  = 10;
            var          fontBrush      = Brushes.Black;

            using (var context = drawingVisual.RenderOpen())
            {
                //Y Axis
                context.DrawLine(axisPen, new Point(xAxisOffset, topOffset), new Point(xAxisOffset, topOffset + yAxisLength));
                //X Axis
                context.DrawLine(axisPen, new Point(xAxisOffset - 5, topOffset + yAxisLength), new Point(xAxisOffset + xAxisLength + 5, topOffset + yAxisLength));

                context.DrawText(new FormattedText(MinValue.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + 5, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 250));
                context.DrawText(new FormattedText(MaxValue.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + 5 + xAxisLength, _heatMapGraph.PixelHeight - yAxisOffset + topOffset + 250));

                context.DrawText(new FormattedText("Time", CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point(xAxisOffset + (xAxisLength / 2), topOffset + yAxisLength + 60));

                var dateDistance = (MaxTimestamp - MinTimestamp).Ticks / numberOfTicks;
                for (var i = 0; i < numberOfTicks; i++)
                {
                    var date   = MinTimestamp + new TimeSpan(i * dateDistance);
                    var xValue = (1 - ((MaxTimestamp - date).TotalSeconds / (MaxTimestamp - MinTimestamp).TotalSeconds)) * xAxisLength + xAxisOffset;
                    context.DrawLine(axisTickPen, new Point(xValue, topOffset + yAxisLength), new Point(xValue, topOffset + yAxisLength + 20));
                    context.DrawText(new FormattedText(date.ToString("yyyy/MM/dd HH:mm"), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, fontSize, fontBrush), new Point(xValue, topOffset + yAxisLength + 10));
                }

                context.PushTransform(new RotateTransform(90));

                context.DrawText(new FormattedText("Depth", CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, headerFontSize, fontBrush), new Point((topOffset + (yAxisLength / 2)), -headerFontSize * 2));

                context.Pop();

                if (_depths != null)
                {
                    foreach (var depthYValue in _depths)
                    {
                        context.DrawText(new FormattedText(depthYValue.Depth.ToString(CultureInfo.InvariantCulture), CultureInfo.InvariantCulture, FlowDirection.LeftToRight, textTypeFace, fontSize, fontBrush), new Point(xAxisOffset - 100, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength));
                        context.DrawLine(axisTickPen, new Point(xAxisOffset - 25, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength + (axisTickPen.Thickness / 2)), new Point(xAxisOffset, topOffset + (depthYValue.YValue / _heatMap.PixelHeight) * yAxisLength + (axisTickPen.Thickness / 2)));
                    }
                }
            }

            _heatMapGraph.Render(drawingVisual);
        }