Renders the container into the specified image.
public abstract RasterImage RenderOnImage(
AnnContainer container,
RasterImage inputImage
)
Public MustOverride Function RenderOnImage( _
ByVal container As AnnContainer, _
ByVal inputImage As RasterImage _
) As RasterImage
-(LTRasterImage*) renderOnImage:(LTAnnContainer*)container inputImage:(LTRasterImage*)inputImage;
public abstract RasterImage renderOnImage(AnnContainer container, RasterImage inputImage)
public:
virtual RasterImage^ RenderOnImage(
AnnContainer^ container,
RasterImage^ inputImage
) abstract
container
The source AnnContainer to be rendered.
inputImage
The target Leadtools.RasterImage.
The result image containing the original image data plus the objects of the contaner overlaid on top.
RenderOnImage can be used to quickly render an annotation to a destination image. The method will automatically renders the objects of the container fitted into the rectangle created by the image width and height keeping the aspect ratio. This method does not erase the content of the image, instead the objects are rendered on top of the existing pixel data.
The method can be used to quickly accomplish the following:
Render the container on a smaller image, for example to create a thumbnail: Create a smaller version of the original image at the desired size and then pass it to RenderOnImage.
Render the container on an image used for printing. Create a temporary image, renders the container on it and then print the result image.
Render the container on an image for saving to an external file or taking a screenshot of the current container.
RenderState can be used to control what state parts of the annotation objects are rendered. For example, you may choose not to render the lock or content pictures when creating a thumbnail, save the original value of RenderState, set it to AnnRenderState.None, call RenderOnImage and then re-set the original value.
This method returns the same inputImage reference.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document