Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
GMImage.Compare
Compares current image with another image.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| GraphicsMagick | 2.0 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| ImageRef | The image reference number. | 1 |
| OtherImageRef | The image reference number. | 1 |
Result
Returns true if equal and false if not equal.
Description
Compares current image with another image.Sets meanErrorPerPixel, normalizedMaxError, and normalizedMeanError in the current image. False is returned if the images are identical.
Examples
Compare images:
Set Variable [$img1; Value:MBS( "GMImage.NewFromContainer"; test::Container1 )]
Set Variable [$img2; Value:MBS( "GMImage.NewFromContainer"; test::Container2 )]
Set Variable [$result; Value:MBS( "GMImage.Compare"; $img1; $img2 )]
If [$result = 1]
Show Custom Dialog ["Image Comparison"; "equal"]
Else If [$result = 0]
Set Variable [$e; Value:MBS( "GMImage.NormalizedMaxError"; $img1 )]
If [$e ≠ 0 and $e < ,03]
Show Custom Dialog ["Image Comparison"; "very similar: " & MBS( "GMImage.NormalizedMaxError"; $img1 )]
Else
Show Custom Dialog ["Image Comparison"; "not equal"]
End If
End If
Set Variable [$r; Value:MBS("GMImage.Release"; $img1)]
Set Variable [$r; Value:MBS("GMImage.Release"; $img2)]
See also
- GMImage.Coders
- GMImage.Composite
- GMImage.New
- GMImage.NewFromContainer
- GMImage.Normalize
- GMImage.NormalizedMaxError
- GMImage.Release
- GMImage.Repage
- GMImage.Rotate
- GMImage.Sample
Created 18th August 2014, last changed 21st December 2018
GMImage.Columns - GMImage.Composite
Feedback: Report problem or ask question.
Links
MBS Xojo Plugins