Guide for VB.NET
Core Document Formats
Additional Features
Rubber Stamp Annotation

VB.NET Imaging - Create Rubber Stamp Annotation

Add Rubber Stamp Annotation by Using RasterEdge VB.NET Image Annotating SDK

VB.NET
Home > .NET Imaging SDK > VB.NET > Rubber Stamp Annotating
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!

If you want to add a rubber stamp markup while reading, reviewing text, or processing designed image and document, then you cannot miss RasterEdge VB.NET Document Imaging Rubber Stamp Annotating SDK, which offers VB.NET developers a high performance and reliable document image rubber stamp option that can be implemented within both VB Windows and web applications that utilize bitonal, grayscale and color images. merge multiple file types into one pdf in c#, ghostscript pdf page count c#, pdf document dll in c#, vb.net read pdf file text, c# itextsharp read pdf image, qr code scanner windows 8.1 c#.
Related .net document control helps:
powerpoint viewer asp.net mvc: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net edit pdf text color: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net excel view: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
asp.net edit pdf page: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net dicom web viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
asp.net pdf document viewer: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
With this VB.NET Image Rubber Stamp Annotator application, both programmers and end users are capable of adding and creating any designed color or multimedia rubber stamp markup to bitional and monochrome image and document formats(supporting image formats include JPEG, PNG, Bitmap, TIFF and GIF; supporting document files are PDF and MS Word). imagemagick convert pdf to png c#, convert pdf to bitmap c# open source, c# convert pdf to svg, c# pdfsharp fill pdf form, create pdf using itextsharp c# windows application, vb.net split pdf, itextsharp tiff to pdf vb.net.
In addition, this powerful and standard Rubber Stamp Annotating Adding control allows users to customize the annotation size (including annotation X, Y, width & height), font style, color, and other more properties. And after you have created an individualized rubber stamp annotation object, multiple storage options of RasterEdge .NET Imaging Saving library are completely available. asp net replace text from pdf javascript, asp.net display pdf, asp.net pdf preview, open word document file in browser in asp.net, how to add header and footer in pdf using itextsharp in asp.net, display pdf in mvc, pdf editor in asp.net mvc.
This VB.NET imaging rubber stamp annotation creating tutorial article mainly contains:
  • Brief introduction of Image Rubber Stamp Annotation Add-on features in VB.NET program
  • Detail technology requirements of VB.NET rubber stamp annotation library
  • How to use the offered VB.NET method to draw rubber stamp annotation
  • How to use sample code in VB class to create specified rubber stamp markup
VB.NET Rubber Stamp Annotation Add-on Features
  • Easy to add a rubber stamp as an image document annotation in VB.NET class application
  • Help VB.NET developers to define custom rubber stamp on image or document files
  • Able to save created rubber stamp annotation as a separate image object using VB.NET
  • Offer rich text font style and various color options to customize rubber stamp annotation
  • Simple VB.NET class code to resize & relocate created rubber stamp in .NET application
  • Adjust rubber stamp annotation edge property & filled shape property independently
  • Own high compatibility with VB.NET png, gif, bmp, jpeg & tiff image processing application
  • Suitable for VB.NET PDF, Word & TIFF document managing & editing project
VB.NET Rubber Stamp Annotating Technical Details
Following list shows the basic requirements of RasterEdge VB.NET Imaging Annotating SDK component.
  • Support Visual Studio 2005, 2008, 2010 & 2012
  • Compatible with Microsoft .NET Framework 2.0, 3.0, 3.5, 4.0 & 4.5
  • Can be implemented into both Windows and web VB.NET applications
  • Support single or multi-threaded VB.NET imaging projects
  • Able to be added to bitonal, color and grayscale images and document files
  • Runtime desktop royalty free image annotating license
VB.NET Method for Drawing Rubber Stamp Annotation
After you have created the compliant VB.NET Window or web imaging application, you can simply and directly apply following annotation creating API solutions to draw and customize a designed rubber stamp object. And as you can see, rubber stamp annotation size, font property and location are all adjustable by using following flexible methods.
Public Shared Function 
CreateRubberStampAnnotation(x As Single, y As Single, w As Single, h As Single, text As String, font As Font, _
fontBrush As AnnotationBrush) As RubberStampAnnotation
End Function

Public Shared Function
CreateRubberStampAnnotation(x As Single, y As Single, w As Single, h As Single, cornerRadius As Single, text As String, _
font As Font, fontBrush As AnnotationBrush) As RubberStampAnnotation
End Function

Public Shared Function
CreateRubberStampAnnotation(x As Single, y As Single, w As Single, h As Single, cornerRadius As Single, text As String, _
font As Font, fontBrush As AnnotationBrush, outline As AnnotationPen, fill As AnnotationBrush) As RubberStampAnnotation
End Function
Entire VB.NET Code to Create Rubber Stamp Annotation
Developed based on the above API methods, following entire VB.NET sample code is offered for helping users to create and specify rubber stamp annotation markup on image and document files. And furthermore, our VB.NET Rubber Stamp Annotating control empowers users with the great abilities to adding single or multiple rubber stamp annotations at the same time.
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Imports RasterEdge.Imaging.Annotation
Imports System.Diagnostics
Imports RasterEdge.Imaging.Annotation.Basic

Namespace annotation_trial
Public Partial Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
End Sub

Private Sub button1_Click(sender As Object, e As EventArgs)

Dim obj As New RubberStampAnnotation()

obj.Text = "This is a Text annotation"
'set the show text
obj.TextFont = New Font("Arial", 12F, FontStyle.Italic)
'set text font
'set the property of filled font
obj.FontBrush = New AnnotationBrush()
obj.FontBrush.FillType = RasterEdge.Imaging.Annotation.FillType.Solid
'set filled font style
obj.FontBrush.Solid_Color = Color.DarkBlue
'set filled font color
' set annotation size
obj.X = 60F
obj.Y = 45F
obj.Width = 40F
obj.Height = 40F

obj.CornerRadius = 0.1F
'set corner radius, when the radius data is larger, the corner becomes rounder
'set annotation edge property
obj.OutLine = New LinePen()
obj.OutLine.Width = 5F
'set annotation edge width
obj.OutLine.Brush = New AnnotationBrush()
obj.OutLine.Brush.FillType = RasterEdge.Imaging.Annotation.FillType.Solid
'set annotation edge style
obj.OutLine.Brush.Solid_Color = Color.Blue
'set annotation edge color
'set the property of filled shape
obj.Fill = New AnnotationBrush()
obj.Fill.FillType = RasterEdge.Imaging.Annotation.FillType.Solid
'set filled shape style
obj.Fill.Solid_Color = Color.Gray
'set filled shape color
Dim folderName As String = "C:/"
Dim img As Bitmap = obj.CreateAnnotation()
img.Save(folderName & "rubberstampannotation.png")
End Sub
End Class
End Namespace
More VB.NET Imaging Annotating SDK Functions


Recommend this to Google+


RasterEdge.com is professional provider of ASP.NET MVC Document Viewer, ASP.NET PDF Viewer, MVC PDF Viewer document, content and imaging solutions, available for ASP.NET AJAX, Silverlight, Windows Forms as well as WPF. We are dedicated to provide powerful & profession imaging controls, PDF document, image to pdf files and components for capturing, viewing, processing, converting, compressing and stroing images, documents and more.

©2000-2024 Raster Edge.com