Langue

scarpet-graphics

scarpet-graphics

Modrinth

Carpet extension with functions for scarpet, used for headless image manipulation (A wrapper of Processing)

4.5k téléchargements 6 abonnés mis à jour 2mo ago
dernière v0.1.7 Modrinth
Fabric 1.19.1 – 26.2 LibraryUtility

scarpet-graphics

Discord

A wrapper of Processing for scarpet

This can also be used with Discarpet to send the created images via Discord.

Values

This extension adds these new scarpet values:

  • image: Wrapper for PImage
  • graphics: Wrapper for PGraphics, extends image value (meaning it can be used in the same way image can)
  • font: Wrapper for PFont

Colors are handled using numbers (0xRRGGBBAA in hex), but can be constructed from RGB and HSB using the color function.

Functions

For a more detailed documentation for these functions, see the Processing reference
Most functions are just a wrapper function for the internal processing function.
Sometimes they may have slightly different names than the original Processing functions, due to the name being already used by scarpet (e.g. copy()) or to group them (all draw_?() functions).

Graphics and Image functions

load_image(location, shared?)

Loads an image from the specified location (string).
Can be a URL, or file name (path that works just like read_file).
If shared is true, uses shared app storage.
Returns an image value.

save_image(image, location, shared?)

Saves the image in the specified location (works like load_image)

create_graphics(width, height)

Creates a new graphics object with the specified dimensions.

copy_image(source, desination, sourceX, sourceY, sourceW, sourceH, destinationX, destinationY, destinationW, destinationH)

Copies pixels from one image/graphics to another.

get_pixel(image, x, y)

Returns the color of a certain pixel.

set_pixel(image, x, y, color)

Sets the pixel on the image to the color.

begin_draw(graphics)

Prepares the graphics object for doing drawing operations on it.

end_draw(graphics)

To be called when done drawing.

Drawing functions

See the 2D Primitives section in the processing reference. (The scarpet functions have draw_ prefixed with the processing function names)

draw_background(graphics, color)

draw_rect(graphics, a, b, c, d)

draw_ellipse(graphics, a, b, c, d)

draw_line(graphics, x1, y1, x2, y2)

draw_image(graphics, image, a, b, c, d)

draw_text(graphics, text, x, y)

Mode functions

color_mode(graphics, mode)

modes: 'RGB', 'HSB'

image_mode(graphics, mode)

modes: 'CORNER', 'CORNERS', 'CENTER'

ellipse_mode(graphics, mode)

modes: 'CORNER', 'CORNERS', 'CENTER', 'RADIUS'

rect_mode(graphics, mode)

modes: 'CORNER', 'CORNERS', 'CENTER', 'RADIUS'

Utility functions

color(graphics, v1, v2, v3, alpha)

Depending on the color_mode() set, v1,v2,v3 are either r,g,b or h,s,b values

fill(graphics, color)

no_fill(graphics)

stroken(graphics, color)

no_stroke(graphics)

stroke_weight(graphics, weight)

smooth(graphics)

no_smooth(graphics)

font_list() (Equivalent to PFont.list() in processing)

text_font(graphics, font)

text_size(graphics, size)

create_font(graphics, name, size, smooth?)

text_align(graphics, alignX, alignY)

Versions

Beta
0.1.7
fabric · 26.1, 26.1.1, 26.1.2 · 2mo ago
* Updated to Minecraft 26.1 * Made `load_image` and `save_image` use the scarpet file system and no longer allow absolute paths.
100
Beta
0.1.6
fabric · 1.20.5, 1.20.6, 1.21 · 26mo ago
* Updated to Minecraft 1.19.4
2.7k
Beta
0.1.5
fabric · 1.19.4, 1.20, 1.20.1 · 39mo ago
* Updated to Minecraft 1.19.4
563
Beta
0.1.4
fabric · 1.19.1, 1.19.2 · 46mo ago
Changed processing to be api implemented
843
Beta
0.1.3
fabric · 1.19.1, 1.19.2 · 46mo ago
Added new api method for discarpet
143
Beta
0.1.2
fabric · 1.19.1 · 47mo ago
First modrinth release. Previous releases: https://github.com/replaceitem/scarpet-graphics/releases
153

Commentaires 0

Aucun commentaire pour l'instant. Sois le premier à donner ton avis.

Télécharger scarpet-graphics

Les fichiers proviennent directement de la source d'origine. Modgrid ne les héberge ni ne les modifie.