23

ImageMagickNet クラスにカスタム関数を追加しようとしています。ImageMagick.NET プロジェクトのメソッドを使用する必要がIsSimilarImage magickありますが、.NET 側で使用できる機能はすべて Magick++ に由来するため、このメソッドを Magick++ 経由でルーティングする必要があるかどうかについて混乱しています。

4

1 に答える 1

2

これはかなり古いですが、答えがないので、ここに行きます。

私は ImageMagick ライブラリを見ていないことに注意してください。そのため、以下のコードの実装の詳細は厳密に例です。ごみを正しい実装に置き換えます。有効な .NET オブジェクトをエクスポートしていると仮定すると、次のように動作します。

' Put your extension methods or properties in a clearly labeled module file, on its own within your project
Module ImageMagickNetExtensions

    ' Define an extension method by using the ExtensionAttribute, and make the first argument
    ' for the method the type that you wish to extend. This will serve as a reference to the extended
    ' instance, so that you can reference other methods and properties within your extension code.
    <Extension()> _
    Public Function SomeExtensionFunction(ByVal imn As ImageMagickNet, ByVal filename As String) As Boolean
        Return imn.IsSimilarImage(filename)
    End Function

End Module

Class SomeClass
    ' To use your extension method within your project containing the extension module, simply
    ' call it on any valid instance of the type you have extended. The compiler will call your code
    ' whenever it sees reference to it, passing a reference to your extended instance.
    Private imn As New ImageMagickNet

    Private Sub DoSomething()
        If imn.SomeExtensionFunction("c:\someimage.jpg") Then
            ...
        End If
    End Sub
End Class
于 2015-05-19T04:25:27.063 に答える