NEMESYS logo :p

You can share and discuss your work with other graphics designers here.
User avatar
M. Eerie
Moderator
Moderator
Posts: 743
Joined: 31 Aug 2017, 21:18
Distribution: Nemesis/Porteux XFCE4

NEMESYS logo :p

Post#1 by M. Eerie » 19 Jul 2019, 17:22

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!
> Does not compute_ 🖖

https://forum.porteus.org/viewtopic.php?p=94310#p94310
https://forum.porteus.org/viewtopic.php?p=102066#p102066
https://forum.porteus.org/viewtopic.php?p=102306#p102306
https://forum.porteus.org/viewtopic.php?p=72741#p72741

User avatar
dreadbird
Shogun
Shogun
Posts: 254
Joined: 08 Dec 2024, 04:30
Distribution: porteus5

NEMESYS logo :p

Post#2 by dreadbird » 29 Mar 2026, 05:21

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

Post Reply