To anyone attempting to use the code above:
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
Note that the timout is set to 1 second. I was getting blank responses on any files over a few kB. Set it to something more reasonable, especially if you want to upload images of larger size.
curl_setopt($ch, CURLOPT_TIMEOUT, 30);