Class Image
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a ScratchImage object by a name and a path to an image.Construct a ScratchImage object by a name and a path to a sprite sheet.Copies a ScratchImage object -
Method Summary
Modifier and TypeMethodDescriptionvoidchangeTint(double h) Changes the tint by adding a hue value to the current hue value.voidchangeTransparency(double step) Changes the transparency by adding a step value to the current transparency.voidDisables the nine-slice scaling for the image.voiddraw(processing.core.PGraphics buffer, double size, double degrees, double x, double y, RotationStyle style, Shader shader) Draw the scaled image at a given position.voidDraw the scaled image at a given position.voiddrawAsBackground(processing.core.PGraphics buffer) Draw the image as a background.voiddrawDebug(processing.core.PGraphics buffer, double size, double degrees, double x, double y, RotationStyle style) Draw the scaled image at a given position.int[]Returns the smallest rectangle that holds every pixel which is not fully transparent, in coordinates of the image before it was resized.intReturns the heightgetName()Returns the nameintReturns the height of the image before it was resized.intReturns the width of the image before it was resized.getTint()Returns the tintdoubleReturns the transparencyintgetWidth()Returns the widthstatic processing.core.PImageLoads an image from a given path and returns it.static processing.core.PImageLoads an image from a given path and returns a tile of the image.static processing.core.PImageloadImageOrBuiltin(String pathOrBuiltin) Loads a picture from either the name of a sprite bundled with Scratch for Java or a path to an image file.static ImageofNameOrPath(String name, String pathOrBuiltin) Creates an image from either the name of a sprite bundled with Scratch for Java or a path to an image file.voidsetHeight(int height) Sets the heightvoidSets the namevoidsetNineSlice(int top, int right, int bottom, int left) Sets the nine-slice scaling parameters for the image.voidsetSize(double percentage) Sets the size of the image to the specified percentage of the original size.voidsetSize(int width, int height) Sets the size of the image to the specified width and height.voidsetTint(double h) Sets the tint with huevoidsetTint(double r, double g, double b) Sets the tint with rgbvoidsetTransparency(double transparency) Sets the transparency, as Scratch's ghost effect: 0 shows the image and 100 hides it.voidsetWidth(int width) Sets the widthCuts a sheet into equally sized tiles, namedprefix0,prefix1and so on.
-
Constructor Details
-
Image
Construct a ScratchImage object by a name and a path to an image.- Parameters:
name- a a nameimagePath- a path to an image
-
Image
Construct a ScratchImage object by a name and a path to a sprite sheet.- Parameters:
name- a namespriteSheetPath- a path to a sprite sheetx- the x coordinate of the tiley- the y coordinate of the tilewidth- the width of the tileheight- the height of the tile
-
Image
Copies a ScratchImage object- Parameters:
i- the ScratchImage object to copy
-
-
Method Details
-
ofNameOrPath
Creates an image from either the name of a sprite bundled with Scratch for Java or a path to an image file.A string without a file extension is looked up in
BuiltinAssets, everything else is treated as a path, so existing code keeps working.- Parameters:
name- the name the image should havepathOrBuiltin- a bundled sprite name or a path to an image- Returns:
- the image
-
loadImageOrBuiltin
Loads a picture from either the name of a sprite bundled with Scratch for Java or a path to an image file.This is
ofNameOrPath(java.lang.String, java.lang.String)for the places that want the picture itself rather than a costume: the mouse cursor, the loading screen, and the sheetaddCostumescuts up. Without it a built-in name worked when naming a costume and nowhere else.- Parameters:
pathOrBuiltin- a bundled sprite name or a path to an image- Returns:
- the picture
-
tilesOf
public static List<Image> tilesOf(String prefix, String pathOrBuiltin, int tileWidth, int tileHeight) Cuts a sheet into equally sized tiles, namedprefix0,prefix1and so on.A built-in name is a region of a shared sheet rather than a file of its own, so the tiles are cut from inside that region instead of from the top left corner of the file it happens to live in.
- Parameters:
prefix- the name every tile starts withpathOrBuiltin- a bundled sprite name or a path to an imagetileWidth- the width of a single tiletileHeight- the height of a single tile- Returns:
- the tiles, in the order the sheet holds them
-
loadImage
Loads an image from a given path and returns it.- Parameters:
path- the path to the image- Returns:
- the image
-
loadImage
Loads an image from a given path and returns a tile of the image.- Parameters:
path- the path to the imagex- the x coordinate of the tiley- the y coordinate of the tilewidth- the width of the tileheight- the height of the tile- Returns:
- a tile of the image
-
getOriginalWidth
public int getOriginalWidth()Returns the width of the image before it was resized.- Returns:
- the width in pixels
-
getOriginalHeight
public int getOriginalHeight()Returns the height of the image before it was resized.- Returns:
- the height in pixels
-
getContentBounds
public int[] getContentBounds()Returns the smallest rectangle that holds every pixel which is not fully transparent, in coordinates of the image before it was resized.Costumes usually have transparent space around them - a walking pose drawn into a costume tall enough for a jumping one, say. Measuring that space makes a sprite collide with what a player can actually see instead of with its whole costume.
- Returns:
- x, y, width and height of the painted area; the whole image if it is fully transparent
-
getName
Returns the name- Returns:
- the name
-
setName
Sets the name- Parameters:
name- unique name
-
getWidth
public int getWidth()Returns the width- Returns:
- the width
-
setWidth
public void setWidth(int width) Sets the width- Parameters:
width- a width value
-
getHeight
public int getHeight()Returns the height- Returns:
- the height
-
setHeight
public void setHeight(int height) Sets the height- Parameters:
height- a height value
-
setTint
public void setTint(double r, double g, double b) Sets the tint with rgb- Parameters:
r- a red value [0...255]g- a green value [0...255]b- a blue value [0...255]
-
setTint
public void setTint(double h) Sets the tint with hue- Parameters:
h- a hue value [0...255]
-
changeTint
public void changeTint(double h) Changes the tint by adding a hue value to the current hue value.- Parameters:
h- a hue value [0...255]
-
getTint
Returns the tint- Returns:
- the tint
-
setTransparency
public void setTransparency(double transparency) Sets the transparency, as Scratch's ghost effect: 0 shows the image and 100 hides it. Values outside that are pinned to it, the way Scratch pins them.- Parameters:
transparency- [0...100]
-
changeTransparency
public void changeTransparency(double step) Changes the transparency by adding a step value to the current transparency.- Parameters:
step- a step value
-
getTransparency
public double getTransparency()Returns the transparency- Returns:
- the transparency [0...100]
-
setSize
public void setSize(double percentage) Sets the size of the image to the specified percentage of the original size.- Parameters:
percentage- The desired size as a percentage of the original size
-
setSize
public void setSize(int width, int height) Sets the size of the image to the specified width and height. If a resized version with the requested dimensions already exists in cache, it will use that version. Otherwise, it creates a new resized copy from the original image and caches it for future use.- Parameters:
width- The desired width of the image in pixelsheight- The desired height of the image in pixels
-
setNineSlice
public void setNineSlice(int top, int right, int bottom, int left) Sets the nine-slice scaling parameters for the image. This allows the image to be scaled while preserving the corners and edges.- Parameters:
top- the top slice heightright- the right slice widthbottom- the bottom slice heightleft- the left slice width
-
disableNineSlice
public void disableNineSlice()Disables the nine-slice scaling for the image. This will make the image scale normally without preserving corners and edges. -
draw
public void draw(processing.core.PGraphics buffer, double size, double degrees, double x, double y, RotationStyle style, Shader shader) Draw the scaled image at a given position.- Parameters:
buffer- a buffersize- a percentage valuedegrees- directionx- a x coordinatey- a y coordinatestyle- a rotation styleshader- a shader
-
drawDebug
public void drawDebug(processing.core.PGraphics buffer, double size, double degrees, double x, double y, RotationStyle style) Draw the scaled image at a given position.- Parameters:
size- a percentage valuedegrees- directionx- a x coordinatey- a y coordinatestyle- a rotation style
-
draw
public void draw(processing.core.PGraphics buffer, float size, float degrees, float x, float y, Shader shader) Draw the scaled image at a given position.- Parameters:
buffer- a buffersize- a percentage valuedegrees- directionx- a x coordinatey- a y coordinateshader- a shader
-
drawAsBackground
public void drawAsBackground(processing.core.PGraphics buffer) Draw the image as a background. The image is automatically scaled to fit the window size.- Parameters:
buffer- a buffer
-