Page 1 of 1

NEMESYS logo :p

Posted: 19 Jul 2019, 17:22
by M. Eerie
Some little artwork to solve this issue by Rava :Rose:

Requirements and steps to recreate:
You'll need a pattern.png brush in the same directory as the script. I'm using this:

Image
  1. Open terminal wherever your texteffect2 is and paste this:

    Code: Select all

    chmod +x ./texteffect2
    ./texteffect2 -t "NemeSYS" -e normal -s glow -f Sandoval -p 200 -tf "pattern.png" -gc black -gw 7 -bg none png:- | display png:-
    You should get something like this:
    Image
  2. Save the created logo (right click to show menu).
  3. Launch Gimp and open your saved logo
  4. Press u to select the magic wand tool (fuzzy selection) and raise the threshold level to something like 50
  5. Invert selection (Ctrl+i)
  6. Take the Stripes 48x48 brush pattern and drag it to the logo
  7. Duplicate the logo layer Ctrl+Shift+d and move this second layer so that it creates a shading effect


You should end with something like this:

Image

All this can be achieved with Imagemagick only. I'll try to update the script in order to do everything from there.

Have fun!

NEMESYS logo :p

Posted: 29 Mar 2026, 05:21
by dreadbird
This is really cool you have to compile the old version of imagemagick

rm -f MagickCore/.libs/libMagickCore-7.Q16HDRI.so.*
rm -f MagickCore/libMagickCore_7_Q16HDRI_la-static.o MagickCore/.libs/libMagickCore_7_Q16HDRI_la-static.o

magickcore/
grep -RIn 'RegisterJPEGImage\|UnregisterJPEGImage'
methods.h and static.h remove anything with jpeg

coders/jpeg.c
replace
image->interlace = jpeg_info->process == JPROC_PROGRESSIVE ? ...;
image->compression = jpeg_info->process == JPROC_LOSSLESS ? ...;
with
image->interlace = NoInterlace;
image->compression = JPEGCompression;

replace
jpeg_simple_lossless(jpeg_info, predictor, point_transform);
with
jpeg_enable_lossless(jpeg_info, predictor, point_transform);

./configure --without-raqm --without-raw --without-heic
make
make DESTDIR=/tmp/output install
./texteffect2 -t "nemeSYS" -e normal -s glow -f Sandoval-Regular -p 200 -tf "pattern.png" -gc black -gw 7 -bg none png:- | display png:-

then in gimp
Windows Dockable Dialogs Patterns
copy pattern location and paste as new brush

modified source
https://drive.google.com/file/d/15opVFj ... sp=sharing
make
make DESTDIR=/tmp/output install

imagemagick-7.1.0-14.xzm
https://drive.google.com/file/d/13biqPD ... sp=sharing
sandoval font https://drive.google.com/file/d/1PdLNbW ... sp=sharing

to list fonts
convert -list font | less