converting blob image to file in php

前端 未结 2 1343
清酒与你
清酒与你 2021-01-04 14:17

I\'m currently using a simple $_FILES upload script to upload pictures from my iPhone app to server. The image sizes, however, are large and I\'d like to resize them before

2条回答
  •  迷失自我
    2021-01-04 14:43

    Try just writing it to a file with an image/[fill-in-the-blank] mimetype. Or maybe imagecreatefromstring will work. (NOT sure about any of these)

    Or you can find another way to resize the images.

提交回复
热议问题