Table of 256 integers containing lookup values that re-map bump image data.
public int[] LookupTable {get; set;}Public Property LookupTable As Integer()public int[] LookupTable {get; set;}get_LookupTable();set_LookupTable(value);Object.defineProperty('LookupTable');
Table of 256 integers containing lookup values that re-map bump image data.
C#
Imports LeadtoolsImports Leadtools.ImageProcessing.Effects' Run the BumpMap command on an image.Private Sub BumpMapTest(ByVal image As RasterImage)TryDim nLookupTable() As IntegerReDim nLookupTable(255)Dim index As Integer = 0For index = 0 To 255nLookupTable(index) = indexNext indexDim command As BumpMapCommandcommand = New BumpMapCommandcommand.Azimuth = 50command.Brightness = 50command.BumpImage = imagecommand.BumpPoint = New Point(0, 0)command.Depth = 1command.DestinationPoint = New Point(0, 0)command.Elevation = 5command.Intensity = 0command.LookupTable = nLookupTablecommand.Tile = Truecommand.Run(image)Catch e As ExceptionMessageBox.Show(e.Message)End TryEnd Sub
using Leadtools;using Leadtools.ImageProcessing.Effects;// Run the BumpMap command on an image.private void BumpMapTest(RasterImage image){try{int [] nLookupTable = new int[256];for(int index = 0; index<256; index++){nLookupTable[index] = index;}BumpMapCommand command = new BumpMapCommand();command.Azimuth = 50;command.Brightness = 50;command.BumpImage = image;command.BumpPoint = new Point(0, 0);command.Depth = 1;command.DestinationPoint = new Point(0, 0);command.Elevation = 5;command.Intensity = 0;command.LookupTable = nLookupTable;command.Tile = true;command.Run(image);}catch(Exception exception){MessageBox.Show(exception.Message);}}
|
Products |
Support |
Feedback: LookupTable Property - Leadtools.ImageProcessing.SpecialEffects |
Introduction |
Help Version 19.0.2017.3.21
|

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.