Pacchetto google.golang.org/appengine/image (v1.6.8)

L'immagine del pacchetto fornisce servizi di immagine.

Funzioni

funzione DeleteProcessingURL

func DeleteServingURL(c context.Context, key appengine.BlobKey) error

L'eliminazione dell'URL di pubblicazione di un'immagine elimina l'URL di pubblicazione.

URL di pubblicazione func

func ServingURL(c context.Context, key appengine.BlobKey, opts *ServingURLOptions) (*url.URL, error)

ServingURL restituisce un URL che pubblicherà un'immagine da Blobstore.

Opzioni URL di pubblicazione

type ServingURLOptions struct {
	Secure bool // whether the URL should use HTTPS

	// Size must be between zero and 1600.
	// If Size is non-zero, a resized version of the image is served,
	// and Size is the served image's longest dimension. The aspect ratio is preserved.
	// If Crop is true the image is cropped from the center instead of being resized.
	Size int
	Crop bool
}