Platforms to show: All Mac Windows Linux Cross-Platform

/CURL/CURLS picture download


Required plugins for this example: MBS CURL Plugin, MBS Images Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /CURL/CURLS picture download

This example is the version from Wed, 3rd Jan 2023.

Project "CURLS picture download.xojo_binary_project"
FileTypes
Filetype text
End FileTypes
Class Window1 Inherits Window
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action() DoDownload End EventHandler
End Control
Control Canvas1 Inherits Canvas
ControlInstance Canvas1 Inherits Canvas
End Control
Control URL Inherits TextField
ControlInstance URL Inherits TextField
End Control
Control StaticText1 Inherits Label
ControlInstance StaticText1 Inherits Label
End Control
Control ResultText Inherits Label
ControlInstance ResultText Inherits Label
End Control
Private Sub DoDownload() dim e as integer dim d as new CURLSMBS d.OptionVerbose = true // collect data, so we don't need our own subclass with events d.CollectOutputData = true d.CollectDebugMessages = true d.CollectHeaders = true // if you use SSL, maybe put in a certificate or disable verification? d.OptionSSLVerifyHost = 0 d.OptionSSLVerifyPeer = 0 d.OptionURL=url.text e=d.Perform // pick image from output data Canvas1.Backdrop = JPEGStringToPictureMBS(d.OutputData, true) // from JPEG plugin ResultText.text="Result: "+str(e) // on success dim DebugMessage as string = d.DebugMessages // check in debugger on error if e <> 0 then break end if End Sub
End Class
MenuBar MenuBar1
MenuItem UntitledMenu1 = ""
MenuItem FileMenu = "&File"
MenuItem FileQuit = "Quit"
MenuItem UntitledMenu5 = ""
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu0 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "Clear"
MenuItem UntitledMenu4 = ""
MenuItem UntitledMenu3 = ""
MenuItem UntitledMenu2 = ""
End MenuBar
Class App Inherits Application
End Class
End Project

See also:

The items on this page are in the following plugins: MBS CURL Plugin.


The biggest plugin in space...