Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
La API de App Engine para herramientas de Cloud Storage proporciona los siguientes métodos útiles a fin de entregar archivos de imagen:
CloudStorageTools.getImageServingUrl()
CloudStorageTools.deleteImageServingUrl()
Una ventaja de usar este método para entregar imágenes en lugar de solo hacer los archivos públicos es la posibilidad de cambiar el tamaño y recortar de forma dinámica, sin tener que almacenar las imágenes en tamaños diferentes.
CloudStorageTools::getImageServingUrl muestra una URL de entrega para una imagen. Si la imagen se mostrará en una página HTTPS, establece secure_url en True para evitar las advertencias de contenido mixto.
Ten en cuenta que esta URL puede ser leída por todos de forma pública, pero no es “adivinable”.
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Información o código de muestra incorrectos","incorrectInformationOrSampleCode","thumb-down"],["Faltan la información o los ejemplos que necesito","missingTheInformationSamplesINeed","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 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`."]]],[]]