Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tesonep/pharo-image-generator

This is a generator to create synthetic images for Pharo
https://github.com/tesonep/pharo-image-generator

pharo

Last synced: 23 days ago
JSON representation

This is a generator to create synthetic images for Pharo

Awesome Lists containing this project

README

        

# pharo-image-generator
This is a generator to create synthetic images for Pharo.
The idea is to reproduce the behaviour of large images of Pharo, so we can test our tools and generate better benchmarks.

To load it:

```
Metacello new
baseline: 'ImageGenerator';
repository: 'github://tesonep/pharo-image-generator';
load.
```

This generator uses a builder scheme with many builder to configure:
A simple example with a big array of byte arrays and a simple generated package can be:

```
ImageGenerator new
targetName: 'bigImage';
withBigArray;
withSimpleBigPackage;
generate.
```