mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
fix image download example code
using "https://placehold.co/512" as the url will cause image.load_png_from_buffer(body) to throw ERR_FILE_CORRUPT, need to specify that it's a png file in the url.
This commit is contained in:
parent
efb40c1524
commit
5bf4689a70
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@
|
|||
http_request.request_completed.connect(self._http_request_completed)
|
||||
|
||||
# Perform the HTTP request. The URL below returns a PNG image as of writing.
|
||||
var error = http_request.request("https://placehold.co/512")
|
||||
var error = http_request.request("https://placehold.co/512.png")
|
||||
if error != OK:
|
||||
push_error("An error occurred in the HTTP request.")
|
||||
|
||||
|
@ -120,7 +120,7 @@
|
|||
httpRequest.RequestCompleted += HttpRequestCompleted;
|
||||
|
||||
// Perform the HTTP request. The URL below returns a PNG image as of writing.
|
||||
Error error = httpRequest.Request("https://placehold.co/512");
|
||||
Error error = httpRequest.Request("https://placehold.co/512.png");
|
||||
if (error != Error.Ok)
|
||||
{
|
||||
GD.PushError("An error occurred in the HTTP request.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue