Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
A API do App Engine para Ferramentas do Cloud Storage fornece métodos convenientes para a exibição de arquivos de imagem:
CloudStorageTools.getImageServingUrl()
CloudStorageTools.deleteImageServingUrl()
Uma vantagem de usar esse método para exibir imagens em vez de simplesmente tornar os arquivos públicos é a capacidade de redimensioná-las e cortá-las dinamicamente sem precisar armazená-las em tamanhos diferentes.
CloudStorageTools::getImageServingUrl retorna um URL de disponibilização para uma imagem. Se a imagem for exibida em uma
página HTTPS, defina secure_url como True para evitar avisos de conteúdo misto.
Esse URL é publicamente legível por todos, mas não pode ser adivinhado.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-04-03 UTC."],[[["The App Engine API offers `CloudStorageTools.getImageServingUrl()` to generate URLs for serving images stored in Cloud Storage, and `CloudStorageTools.deleteImageServingUrl()` to stop serving them."],["Using `getImageServingUrl` allows for dynamic resizing and cropping of images without needing to store multiple image sizes, offering a significant advantage over directly making files public."],["Only the first app that calls `getImageServingUrl` can serve a specific image; subsequent apps must copy the image first if they need to serve it."],["Setting `secure_url` to `True` when using `getImageServingUrl` ensures the image can be displayed on HTTPS pages without mixed-content warnings."],["To remove the actual file you must use the PHP `unlink()` function and not the `deleteImageServingUrl`."]]],[]]