Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tesonep/pharo-image-generator
- Owner: tesonep
- License: mit
- Created: 2020-01-29T10:57:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-22T09:21:45.000Z (over 4 years ago)
- Last Synced: 2024-10-31T07:05:44.353Z (2 months ago)
- Topics: pharo
- Language: Smalltalk
- Size: 344 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```