Raku interface to the Imlib2 image library.
Operating System | Build Status |
---|---|
Linux |
Raku binding for Imlib2, a featureful and efficient image manipulation library, which produces high quality, anti-aliased output.
Note that a recent version of Imlib2 library must be installed before installing this module.
To install with zef:
zef update
zef install Imlib2
WARNING: This module is Work in Progress, which means: this interface is not final. This will perhaps change in the future.
Below is a sample code:
use Imlib2;
my $im = Imlib2.new();
# Create a new raw image.
my $rawimage = $im.create_image(200, 200);
exit() unless $rawimage;
# Sets the current image Imlib2 will be using with its function calls.
$rawimage.context_set();
# Sets the color with which text, lines and rectangles are drawn when
# being rendered onto an image.
$im.context_set_color(
red => 255,
green => 127,
blue => 0,
alpha => 255);
$im.image_draw_rectangle(
location => (0, 0),
size => (200, 200),
fill => True);
$im.image_set_format("png");
unlink("images/test_imlib2.png") if "images/test_imlib2.png".IO ~~ :e;
$im.save_image("images/test_imlib2.png");
# Frees the image that is set as the current image in Imlib2's context.
$im.free_image();
exit();
Henrique Dias [email protected]
This library is free software; you can redistribute it and/or modify it under the same terms as Raku itself.