Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
CURL.GetResultAsJPEG
Returns the result of the transaction as JPEG image.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
CURL | 2.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
curl | The CURL session handle. | $curl | |
Filename | The desired file name. | test.jpg | Optional |
Result
The result value which you can assign to a container field.
Description
Returns the result of the transaction as JPEG image.Make sure the data is a JPEG. The plugin does not verify whether result is a JPEG file. But if it is one, it sets size properties so FileMaker can preview it.
Version 5.2 and later can use the filename from URL if you don't provide one yourself.
See also CURL.GetResultAsContainer.
Examples
Load JPEG from URL and store in container field:
# start new transfer
Set Variable [$curl; Value:MBS("CURL.New")]
# set URL
Set Variable [$r; Value:MBS("CURL.SetOptionURL"; $curl; "https://monkeybreadsoftware.com/filemaker/images/devcon2013.jpg")]
# run transfer
Set Variable [$ErrorCode; Value:MBS("CURL.Perform"; $curl)]
# get result as JPG and store in field:
Set Variable [$Result; Value:MBS( "CURL.GetResultAsJPEG"; $curl)]
Set Field [test::MyContainerField; $Result]
# get debug messages:
Set Variable [$DebugMessages; Value:MBS( "CURL.GetDebugMessages"; $curl)]
# cleanup
Set Variable [$r; Value:MBS("CURL.Release"; $curl)]
See also
- CURL.GetResultAsData
- CURL.GetResultAsEmail
- CURL.GetResultAsPDF
- CURL.GetResultAsPNG
- CURL.GetResultAsText
- CURL.New
- CURL.Release
- CURL.SetDebugWithProgress
- CURL.SetOptionURL
- CURL.SetOptionVerbose
Release notes
- Version 15.1
- Improved CURL.GetResultAsGIF, CURL.GetResultAsJPEG, CURL.GetResultAsPDF and CURL.GetResultAsPNG to return empty if the data is not the expected type.
Example Databases
- CURL/Amazon S3/Amazon S3 Download Picture
- CURL/CURL Download in Background
- CURL/CURL Download with Progress
- CURL/WebViewer Download Images with CURL
Blog Entries
- MBS FileMaker Plugin, version 15.1pr1
- Translating Insert from URL options for CURL to MBS Plugin calls
- CURL Tutorial for Filemaker with MBS Plugin
This function checks for a license.
Created 18th August 2014, last changed 19th April 2020
