Barry Schwartz 🫖 · @chemoelectric
508 followers · 7834 posts · Server masto.ai

I have started a set of = manipulation tasks (since when do we pretend a color image is a ‘bitmap’?) with an contribution to the very first of the tasks:

rosettacode.org/wiki/Bitmap#AT

I went back to doing things at a low level, which my readers surely will appreciate. So the code is lengthy, given what is being done.

And safety is important, so notice that if a ‘load’ fails you still get valid image data (an image filled with one color).

#pixmap #bitmap #ats #programmercentricproof

Last updated 2 years ago

nil · @nil
66 followers · 97 posts · Server functional.cafe

More Inside Smalltalk volume 2 gold.

#smalltalk80 #bitmap

Last updated 2 years ago

screwtape · @screwtape
155 followers · 1039 posts · Server mastodon.sdf.org

no wait let's call that
forth.noip.me:8443/w/5Hd8m77b9
That two second scribble is my second art ever, the first being me slightly earlier today. It's addictive how nice fingerpainting on a tablet with it is.
interlisp.org/
If you just download a release from github (ugh) and ./run-medley you can do the two lines I do in the two minute video and drawing-ahoy.

We'll get AI to output bitmasks later. Total AI show
Come on cool mastoartists!

#80s #bitmap #drawing #modern #interlisp #medley #art

Last updated 2 years ago

PapaJames · @papajames
104 followers · 144 posts · Server nerdculture.de

I spent the day learning more about Inkscape; particularly how to convert a bitmap image to a usable svg format. Laser cutters aren't too fond of bitmap images. They're just too pixelated.
Anyway, I had some good success!

#laserengraver #lasercutter #woodworking #atomstack #bitmap #svg #inkscape #lightburn

Last updated 2 years ago

GeekProjects News · @news
1 followers · 2084 posts · Server geekprojects.com
IT News · @itnewsbot
2856 followers · 248627 posts · Server schleuss.online

Reliving a Bitmapped Past With a Veritable Hoard of Bitmap Fonts - The fonts seen with old computer systems such as those from Apple and Commodore, a... - hackaday.com/2023/02/04/relivi #8-bitfonts

#lcd #bitmap #retrofonts #bitmapfonts #retrocomputing

Last updated 2 years ago

ertdfgcvb · @andreasgysin
388 followers · 174 posts · Server mastodon.social

…and the “digits” are numbers as well (bitmaps):
“1” → 147460255
“2” → 487657759
“3” → 1042482734
etc.





#bitmap #textmode #cryptoart #asciiart #svg

Last updated 2 years ago

tiago · @tca
896 followers · 1804 posts · Server genart.social
MEMEXIKON · @memexikon
148 followers · 455 posts · Server mastodon.social

Yay, I can now also read binary format (P4 type) *.pbm files up to a 320x240 resolution and display them on the of my . P4 binary format means smaller files (~12K) and quicker reading of bitmap data.

So now i can read and display the following bitmap sizes:

256x192
256x224
320x240

320x240 mode required some additonal bit flagging, but other wise works like a charm!

P.S.: I also rewrote the I/O code for reading the files.

Code will be published soon, stay tuned!

#bitmap #propellervgagraphicscard #rc2014

Last updated 2 years ago

nicobiev · @bini
27 followers · 38 posts · Server mastodon.social
Metin Seven · @metin
885 followers · 361 posts · Server mastodon.art

The Creatures in my Head.

I love to take a break from 3D creation to further develop this graphical 2D style.

#icons #graphicdesign #design #graphic #artwork #art #illustrator #illustration #bitmap #vector #2d

Last updated 2 years ago

Anisse :unverified: · @aissen
221 followers · 279 posts · Server octodon.social

Yesterday I was doing bit-manipulation in and I learned a new trick:

I was trying to shift right an u8 by a value between 1 and 8 bits:

myu8 >> (8 - shift)

At an 8 bits shift, I wanted it the result to be zero (all bits shifted), but that's not how (some) CPUs work; so it's undefined behaviour, and the rust compiler will throw a compile error (if it's a const shift), or panic at runtime in debug mode.

So the trick to work around that is simply... to shift twice ! One time for the first bit, and another for the last (potential 6):

(myu8 >> 1) >> (8 - shift - 1)

And that's how one can do this operation fully branchless.

In the end I didn't use the trick at all because I had misunderstood what I really needed, but it was fun !

#rust #rustlang #bitmap

Last updated 2 years ago

tth · @tth
140 followers · 351 posts · Server mastodon.tetaneutral.net

@nicod

Oui, d'un autre coté, optimiser du ou optimiser du , c'est pas vraiment la même chose. Mais tu peux tenter de poser la question dans le post , il y aura peut-être plus de réponses qu'ici...

#dalfp #vectoriel #bitmap

Last updated 2 years ago

tuxwise · @tuxwise
29 followers · 93 posts · Server social.tchncs.de

Recommended tool:

Why? - Multi-format · Plugins: filtering etc · Perspective correction · Cloning & healing · Layers · Scripting · Many tutorials on social media

More recommendations: tuxwise.net/recommended-softwa

gimp.org/

#gimp #processing #image #bitmap #opensource

Last updated 3 years ago

Grumpy Mark · @GrumpyMark
417 followers · 751 posts · Server mastodon.art

The Coffee Cup Abstraction

(A hand-drawn Pixmap/Level Of Detail exercise)

#bitmap #pixel #pixmap #drawing #pencilsketch #pencildrawing

Last updated 3 years ago

Coffee · @Coffee
487 followers · 11294 posts · Server toot.cafe

> But Coffee, what on earth are graphics?

👉 Did you know?

You can display actual on the actual in selected emulators.

Terminals which support this include , and (after configuration). Support in and other -based terminals is underway.

More info:
* codeberg.org/coffee/sixel-expe
* open.source.coffee/sixel-graph
* other posts in this thread

👇

#VTE #gnometerminal #xterm #FootTerminal #mlterm #terminal #console #images #bitmap #sixel

Last updated 3 years ago

(RTP):tor:Privacy & Tech Tips · @RTP
2618 followers · 3880 posts · Server fosstodon.org
· @linkdrop
45 followers · 1816 posts · Server botsin.space
frankiezafe · @frankiezafe
437 followers · 3013 posts · Server mastodon.xyz

quick editor with : several hours of work and voilà (i love this tool)
i think it's a funny & quick way to design a basic font
code is here: gitlab.com/polymorphcool/fyac
video: polymorph.cool/wp-content/uplo
@crickxson @Ludi @smag @ameliedumont

#bitmap #font #godotengine

Last updated 4 years ago