Uses of Class
com.google.appengine.api.images.ImagesService.OutputEncoding
-
Packages that use ImagesService.OutputEncoding Package Description com.google.appengine.api.images Provides facilities for the creation and manipulation of images. -
-
Uses of ImagesService.OutputEncoding in com.google.appengine.api.images
Methods in com.google.appengine.api.images that return ImagesService.OutputEncoding Modifier and Type Method Description ImagesService.OutputEncoding
OutputSettings. getOutputEncoding()
Gets the output encoding.static ImagesService.OutputEncoding
ImagesService.OutputEncoding. valueOf(String name)
Returns the enum constant of this type with the specified name.static ImagesService.OutputEncoding[]
ImagesService.OutputEncoding. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.appengine.api.images with parameters of type ImagesService.OutputEncoding Modifier and Type Method Description Image
ImagesService. applyTransform(Transform transform, Image image, ImagesService.OutputEncoding encoding)
Applies the providedtransform
to the providedimage
encoding the transformed image stored usingencoding
file format.Future<Image>
ImagesService. applyTransformAsync(Transform transform, Image image, ImagesService.OutputEncoding encoding)
Asynchronously applies the providedtransform
to the providedimage
encoding the transformed image stored usingencoding
file format.Image
ImagesService. composite(Collection<Composite> composites, int width, int height, long color, ImagesService.OutputEncoding encoding)
Applies the providedCollection
ofComposite
s using a canvas with dimensions determined bywidth
andheight
and background colorcolor
.void
OutputSettings. setOutputEncoding(ImagesService.OutputEncoding outputEncoding)
Sets the output encoding.Constructors in com.google.appengine.api.images with parameters of type ImagesService.OutputEncoding Constructor Description OutputSettings(ImagesService.OutputEncoding outputEncoding)
-