Imgur

PAGATO
Verified
Da Imgur | Aggiornamento vor 24 Tagen | Entertainment
Popolarità

9.9 / 10

Latenza

1,136ms

Livello di servizio

100%

Health Check

N/A

Torna a tutte le discussioni

uploading using php, always says image corrupted or not format not supported

Rapid account: Abanoub Nassem
AbanoubNassem
vor 9 Jahren

if (isset($_POST[‘upload’], $_FILES[‘file’])) {
require_once ‘vendor/autoload.php’;

        global $Pointer;

        $valid_file_extensions = array(".jpg", ".jpeg", ".gif", ".png");

        $file_extension = strrchr($_FILES["file"]["name"], ".");

        if (in_array($file_extension, $valid_file_extensions)) {
            if (@getimagesize($_FILES["file"]["tmp_name"]) !== false) {

                $filename = $_FILES['file']['tmp_name'];
                $handle = fopen($filename, "r");
                $data = fread($handle, filesize($filename));

                $response = Unirest\Request::post("https://imgur-apiv3.p.mashape.com/3/image",
                    array(
                        "X-Mashape-Key" => "key",
                        "Authorization" => "Client-ID ID",
                        "Content-Type" => "application/x-www-form-urlencoded"
                    ),
                    array(
                        "image" => base64_encode($data)
                    )
                );

                var_dump(base64_encode($data));
                $result = json_decode($response->raw_body);

                if ($result->success) {
                    var_dump($result);
                } else {
                    $Pointer->Bootstrap()->Alert($result->data->error, "danger");
                }

            }
        }
    }

Partecipa alla discussione - aggiungi un commento di seguito:

Accedi/Iscriviti per pubblicare nuovi commenti