how can we use firebase image file and resize them using get_Serving_URL

后端 未结 3 483
盖世英雄少女心
盖世英雄少女心 2020-12-04 03:06

I just started using google cloud services and found that the following can be only implemented using blob but i want to use image name from cloud storage.

Is there

3条回答
  •  不思量自难忘°
    2020-12-04 03:34

    here is the blog to resize the image

    This is the sample PHP code but how to make it working in FireBase you need to refer the link below click here to read more

    index.php:
    
     $size, 'crop' => false]);
    syslog(LOG_WARNING, "Output Url $object_image_url");
    header("location: $object_image_url");
    
    closelog();
    ?>
    
    
    
    app.yaml:
    
    runtime: php55
    api_version: 1
    
    handlers:
    - url: /.*
    script: index.php

提交回复
热议问题