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.SetQuality
Sets the JPEG/MIFF/PNG compression level (default 75).
| 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 |
| quality | a number in range of 0 to 100. | 75 |
Result
Returns "OK" on success.
Description
Sets the JPEG/MIFF/PNG compression level (default 75).Examples
Recompresses the image with JPEG compressor and a really bad quality:
Let ( [
$Image = MBS("GMImage.NewFromContainer"; GraphicsMagick::image);
$Result = MBS("GMImage.SetQuality";$Image; 5);
$Result = MBS("GMImage.WriteToJPEGContainer"; $Image);
$Error = MBS("GMImage.Release";$Image)
];
$Result)
Converts to JPEG with 90% compression:
Set Variable [$ImageRef; Value:MBS("GMImage.NewFromContainer"; Test::BigImage)]
Set Variable [$Result; Value:MBS("GMImage.SetQuality"; $ImageRef; 90)]
Set Field [Test::Result; MBS( "GMImage.WriteToJPEGContainer"; $ImageRef )]
Set Variable [$Error; Value:MBS("GMImage.Release";$ImageRef)]
See also
- Barcode.Generate
- GMImage.GetDensity
- GMImage.GetQuality
- GMImage.New
- GMImage.NewFromContainer
- GMImage.Release
- GMImage.SetIsValid
- GMImage.SetMagick
- GMImage.SetProfile
- GMImage.SetQuiet
Example Databases
Blog Entries
FileMaker Magazin
Created 18th August 2014, last changed 21st December 2018
GMImage.SetProfile - GMImage.SetQuantizeColorSpace
Feedback: Report problem or ask question.
Links
MBS Xojo PDF Plugins