Ninguno de estos métodos funciona, mejor pedilo a ChatGPT xD
Yes 👍 — you can definitely use ImageMagick’s convert
(or magick
in newer versions) to make pencil writing appear darker, bolder, and more like pen. What you’d usually do is increase contrast, darken grays toward black, and possibly threshold the image.
Here are some example commands you can try:
magick input.jpg -level 20%,80% -contrast -contrast output.jpg
-level 20%,80%
remaps brightness so lighter grays become closer to white and darker grays closer to black.-contrast
(repeat it 2–3 times if needed) boosts overall contrast.magick input.jpg -threshold 60% output.jpg
60%
, 70%
, etc.) until it looks right.magick input.jpg -morphology Convolve DoG:0,0,1 -normalize -level 25%,75% output.jpg
-morphology Convolve DoG:0,0,1
enhances edges (like strokes).-normalize
stretches brightness levels.magick input.jpg -colorspace Gray -level 30%,90% -contrast -sharpen 0x1 -threshold 65% output.jpg
This workflow:
👉 Do you want the result to stay a bit natural (still grayscale, like a dark pencil), or go all the way to pure black ink strokes (pen/scan effect)?