Projects tagged ‘bitmap’ and ‘bmp’


Jump to tag:

Projects tagged ‘bitmap’ and ‘bmp’

Filtered by Project Tags bitmap bmp

Refine results Project Tags python (2) format (1) digital (1) colorkey (1) clear (1) alpha (1) screenshotz (1) png (1) nagl (1) screenshot (1) fonts (1) batch (1)

[4 total ]

0 Users

Picturez makes it possible to edit, trim, convert and/or resize many pictures in one step. It works very memory space-saving and has a modern (MS Office2007-like) graphical user interface. It ... [More] consists of two parts: The picture converter The picture editor The advantage of Picturez is the very easy handling. You can convert or edit a picture just by right-clicking and using the Windows context menu. Also you can convert all pictures inside a folder by easy using the Windows context menu. Take a look at the screenshots beneath. In deutsch: Das schlanke Programm Picturez ermöglicht das Beschneiden, Konvertieren und Anpassen der Bildgröße von mehreren Bildern gleichzeitig. Es arbeitet sehr speicherschonend und besitzt eine moderne Nutzeroberfläche (MS Office2007-ähnlich). Es besteht aus zwei Teilen: Der Bildkonverter Der Bildeditor Der Vorteil von Picturez ist das sehr einfache Bedienen. Zum Umwandeln oder Bearbeiten von Bildern kann man einfach im Windows Explorer per Rechtsklick auf die Bilddatei klicken und das Windows-Kontextmenü nutzen. Sogar ganze Fotosammlungen in einem Ordner können per einfachen Rechtsklick auf das Verzeichnis konvertiert werden (siehe unten die Bilder). The picture converter The picture editor Windows Context Menu for folders Windows Context Menu for image files [Less]
Created 11 months ago.

0 Users

A simple tool to dump graphical BMP files as C arrays, ready for use in C code.
Created 11 months ago.

0 Users

TransparentPNG is a BMP to PNG conversion tool that batch converts BMPs into PNGs while creating transparency on the fly by zeroing out Alpha values for White/Magenta pixels without effecting existing RGB values.
Created 2 months ago.

0 Users

Bitmap loading and writing utilities in pure Python. Supports drawing many shapes and text. This project was created to add support for image drawing capabilities for Google Appengine. To write text ... [More] onto bitmaps, you first need to create proper python module with make_font.py. For example: python make_font.py -f /usr/share/fonts/truetype/msttcorefonts/arialbd.ttf -s 12The python code would look like this: import bmp import bmpfont_arialbd_12 img = bmp.BitMap( 500, 40, bmp.Color.TEAL.lighten() ) img.setFont(bmpfont_arialbd_12.font_data) img.setPenColor( bmp.Color.BLUE ) img.drawText('abcdefghijklmnoprstuvxyz!@#$^%&^**()_}{\",.?<>', 10, 10) img.drawLine( 0, 0, 10, 10) # save the file img.saveFile( "test.bmp" ) # or get the bitmap as string bitmap = img.getBitmap() [Less]
Created about 1 month ago.