VintaSoft Imaging .NET SDK 14.1: Документация для .NET разработчика
Vintasoft.Imaging.ImageProcessing.Info Namespace / HasCertainColorCommand Class
Члены типа Объект Синтаксис Example Иерархия Требования Смотрите также
    Класс HasCertainColorCommand
    Проверяет, содержит ли изображение определенный цвет.
    Объектная модель
    ColorBase ProcessingCommandResults HasCertainColorCommand
    Синтаксис
    'Declaration
    
    Public Class HasCertainColorCommand
       Inherits Vintasoft.Imaging.ImageProcessing.ProcessingCommandBase
    
    
     
    Пример

    Вот C#/VB.NET код, который демонстрирует, как загрузить изображение с диска и проверить, содержит ли изображение определенный цвет.

    Class HasCertainColorCommandExample
        Public Sub ProcessImage()
            ' [ do not forget to set your image file path here! ]
            ' create an image collection
            Using images As New Vintasoft.Imaging.ImageCollection()
                ' add image to the image collection
                images.Add("Deskew.tif")
                Try
                    ' create the image processing command
                    Dim command As New Vintasoft.Imaging.ImageProcessing.Info.HasCertainColorCommand()
    
                    ' subscribe to progress event of image processing command
                    AddHandler command.Progress, New System.EventHandler(Of Vintasoft.Imaging.ImageProcessing.ImageProcessingProgressEventArgs)(AddressOf command_Progress)
    
                    Try
                        ' for each image in image collection
                        For Each image As Vintasoft.Imaging.VintasoftImage In images
                            ' apply the image processing command to the image
                            command.ExecuteInPlace(image)
    
                            ' show result
                            If command.Result Then
                                System.Windows.Forms.MessageBox.Show(String.Format("Image has {0} color.", command.Color))
                            Else
                                System.Windows.Forms.MessageBox.Show(String.Format("Image does not have {0} color.", command.Color))
                            End If
                        Next
                    Catch ex As Vintasoft.Imaging.ImageProcessing.ImageProcessingException
                        ' show error message
                        System.Windows.Forms.MessageBox.Show(ex.Message)
                        Return
                    End Try
                Finally
                    images.ClearAndDisposeItems()
                End Try
            End Using
        End Sub
    
        Private Sub command_Progress(sender As Object, e As Vintasoft.Imaging.ImageProcessing.ImageProcessingProgressEventArgs)
            ' update progress info using e.Progress property
            ' ...
    
            ' cancel execution of command using e.Cancel property if necessary
            ' ...
        End Sub
    End Class
    
    
    class HasCertainColorCommandExample
    {
        public void ProcessImage()
        {
            // [ do not forget to set your image file path here! ]
            // create an image collection
            using (Vintasoft.Imaging.ImageCollection images = new Vintasoft.Imaging.ImageCollection())
            {
                // add image to the image collection
                images.Add("Deskew.tif");
                try
                {
                    // create the image processing command
                    Vintasoft.Imaging.ImageProcessing.Info.HasCertainColorCommand command =
                        new Vintasoft.Imaging.ImageProcessing.Info.HasCertainColorCommand();
    
                    // subscribe to progress event of image processing command
                    command.Progress +=
                        new System.EventHandler<Vintasoft.Imaging.ImageProcessing.ImageProcessingProgressEventArgs>(command_Progress);
    
                    try
                    {
                        // for each image in image collection
                        foreach (Vintasoft.Imaging.VintasoftImage image in images)
                        {
                            // apply the image processing command to the image
                            command.ExecuteInPlace(image);
    
                            // show result
                            if (command.Result)
                            {
                                System.Windows.Forms.MessageBox.Show(string.Format("Image has {0} color.", command.Color));
                            }
                            else
                            {
                                System.Windows.Forms.MessageBox.Show(string.Format("Image does not have {0} color.", command.Color));
                            }
                        }
                    }
                    catch (Vintasoft.Imaging.ImageProcessing.ImageProcessingException ex)
                    {
                        // show error message
                        System.Windows.Forms.MessageBox.Show(ex.Message);
                        return;
                    }
                }
                finally
                {
                    images.ClearAndDisposeItems();
                }
            }
        }
    
        void command_Progress(object sender, Vintasoft.Imaging.ImageProcessing.ImageProcessingProgressEventArgs e)
        {
            // update progress info using e.Progress property
            // ...
    
            // cancel execution of command using e.Cancel property if necessary
            // ...
        }
    }
    
    

    Иерархия наследования

    System.Object
       Vintasoft.Imaging.ImageProcessing.ProcessingCommandBase
          Vintasoft.Imaging.ImageProcessing.Info.HasCertainColorCommand

    Требования

    Целевые платформы: .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также