Page 1 of 1
32BIT PALETTE SWAP "USING EDUKE32 & POLYMER HIGHPAL LOOKUP TABLES"
#1 Posted 03 March 2017 - 09:32 PM
32BIT PALETTE SWAP USING EDUKE32 & POLYMER HIGHPAL LOOKUP TABLES
Put image to palette swap in root folder named palswap32.png
*copy over the color wheel sample image
Run _palswap32.bat
Select either 1920 X 1080 ||OR|| 1280 X 1024 screen resolution
Check both boxes on, Fullscreen & Polymer
Click Start
KEYLIST:
W=SHOW/HIDE KEYLIST
A&D=CHANGE ZOOM
S=SWAP PALETTE
BACKSPACE=BACKGROUND
F12=SCREENSHOT
ESC=TO QUIT
palswap32.7z (5.51MB)
Number of downloads: 262
#2 Posted 02 February 2019 - 09:14 AM
#3 Posted 02 February 2019 - 11:34 AM
Instead of going through EDuke32, you could probably write a rather simple Python script to perform a proper conversion and export process.
#4 Posted 02 February 2019 - 11:55 AM
Very good point, found this on stack exchange.
What if anything is preventing the highpal stuff from polymer working with polymost?
Quote
I'm using python 3.6.4 and Pillow 5.0.0. Gizmo's code snippet didn't work for me. After little work I created a fixed snippet:
import Image picture = Image.open("/path/to/my/picture.jpg") # Get the size of the image width, height = picture.size # Process every pixel for x in range(width): for y in range(height): current_color = picture.getpixel( (x,y) ) #################################################################### # Do your logic here and create a new (R,G,:) tuple called new_color #################################################################### picture.putpixel( (x,y), new_color)
What if anything is preventing the highpal stuff from polymer working with polymost?
Share this topic:
Page 1 of 1