Burns the annotation objects in Container to the destination context and destination rectangle at the specified resolution.
public void BurnToRectWithDpi(Leadtools.LeadRectD destinationRect,double sourceDpiX,double sourceDpiY,double targetDpiX,double targetDpiY)
Public Sub BurnToRectWithDpi( _ByVal destinationRect As Leadtools.LeadRectD, _ByVal sourceDpiX As Double, _ByVal sourceDpiY As Double, _ByVal targetDpiX As Double, _ByVal targetDpiY As Double _)
public void BurnToRectWithDpi(Leadtools.LeadRectD destinationRect,double sourceDpiX,double sourceDpiY,double targetDpiX,double targetDpiY)
-(void) burnToRectWithDpi:(LeadRectD) destinationRectsourceDpiX:(double)sourceDpiXsourceDpiY:(double)sourceDpiYtargetDpiX:(double)targetDpiXtargetDpiY:(double)targetDpiY;
public void burnToRectWithDpi(LeadRectD destinationRect,double sourceDpiX,double sourceDpiY,double targetDpiX,double targetDpiY)
function Leadtools.Annotations.Core.AnnRenderingEngine.BurnToRectWithDpi(destinationRect ,sourceDpiX ,sourceDpiY ,targetDpiX ,targetDpiY)
destinationRect
The destination rectangle in container coordinates.
sourceDpiX
Horizontal source (image) DPI.
sourceDpiY
Vertical source (image) DPI.
targetDpiX
Horizontal target (screen) DPI.
targetDpiY
Vertical target (screen) DPI.
All visible objects in this container will be drawn into the current context.
This method uses the resolution (DPI) values specified and not the values stored in the container. Use this method when burning the container objects into any context.
To burn a container into the context of the image being automated, use Burn.
This example will create a container, add a couple of objects and then burn it into the viewer
using Leadtools.Annotations.Automation;using Leadtools.Annotations.Core;using Leadtools.Annotations.Rendering;using Leadtools.Codecs;using Leadtools.Annotations.WinForms;public void AnnRenderingEngine_BurnToRectWithDpi(/*RasterImage image*/){// _viewer is ImageViewer _automation is working on// Get the containerAnnContainer container = _automation.Container;RasterImage image = _viewer.Image;double inch = 720.0;// Add a red line object, from 1in 1in to 2in 2inAnnPolylineObject lineObj = new AnnPolylineObject();lineObj.Points.Add(LeadPointD.Create(1 * inch, 1 * inch));lineObj.Points.Add(LeadPointD.Create(2 * inch, 2 * inch));lineObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Red"), LeadLengthD.Create(1));container.Children.Add(lineObj);// Add a blue on yellow rectangle from 3in 3in to 4in 4inAnnRectangleObject rectObj = new AnnRectangleObject();rectObj.Rect = LeadRectD.Create(3 * inch, 3 * inch, 1 * inch, 1 * inch);rectObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthD.Create(1));rectObj.Fill = AnnSolidColorBrush.Create("Yellow");container.Children.Add(rectObj);IAnnAutomationControl annAutomationControl = _automation.AutomationControl;RasterColor[] colors = image.GetPalette();IntPtr hDC = Leadtools.Drawing.RasterImagePainter.CreateLeadDC(image);if (hDC != null){using (Graphics g = Graphics.FromHdc(hDC)){// Create a new rendering engine for this container and contextAnnWinFormsRenderingEngine renderingEngine = new AnnWinFormsRenderingEngine(container, g);// Set the resolutiondouble dpiX = g.DpiX;double dpiY = g.DpiY;double xRes = annAutomationControl.AutomationDpiX;double yRes = annAutomationControl.AutomationDpiY;// Burn itrenderingEngine.BurnToRectWithDpi(LeadRectD.Empty, dpiX, dpiY, xRes, yRes);}Leadtools.Drawing.RasterImagePainter.DeleteLeadDC(hDC);}// Delete the objects we added_automation.SelectObjects(container.Children);_automation.DeleteSelectedObjects();// Invalidate to see the burned objects_automation.Invalidate(LeadRectD.Empty);}
using Leadtools.Converters;using Leadtools.Annotations.Automation;using Leadtools.Controls;using Leadtools.Annotations.Core;using Leadtools.Annotations.Rendering;using Leadtools.Codecs;public void AnnRenderingEngine_BurnToRectWithDpi(){// _viewer is ImageViewer _automation is working on// Get the containerAnnContainer container = _automation.Container;double inch = 720.0;// Add a red line object, from 1in 1in to 2in 2inAnnPolylineObject lineObj = new AnnPolylineObject();lineObj.Points.Add(LeadPointDHelper.Create(1 * inch, 1 * inch));lineObj.Points.Add(LeadPointDHelper.Create(2 * inch, 2 * inch));lineObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Red"), LeadLengthDHelper.Create(1));container.Children.Add(lineObj);// Add a blue on yellow rectangle from 3in 3in to 4in 4inAnnRectangleObject rectObj = new AnnRectangleObject();rectObj.Rect = LeadRectDHelper.Create(3 * inch, 3 * inch, 1 * inch, 1 * inch);rectObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthDHelper.Create(1));rectObj.Fill = AnnSolidColorBrush.Create("Yellow");container.Children.Add(rectObj);// Create a new rendering engine for this container and contextAnnWinRTRenderingEngine renderingEngine = new AnnWinRTRenderingEngine(container, _viewer.InteractiveModeCanvas);// Set the resolutiondouble dpiX = _viewer.ScreenDpiX;double dpiY = _viewer.ScreenDpiY;double xRes = _viewer.ImageDpiX;double yRes = _viewer.ImageDpiY;// Burn itrenderingEngine.BurnToRectWithDpi(LeadRectDHelper.Empty, dpiX, dpiY, xRes, yRes);// Delete the objects we added_automation.SelectObjects(container.Children);_automation.DeleteSelectedObjects();// Invalidate to see the burned objects_viewer.Invalidate();}
|
Products |
Support |
Feedback: BurnToRectWithDpi Method - Leadtools.Annotations.Core |
Introduction |
Help Version 19.0.2017.3.22
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.