Läuft die Voice Acoustic VA-Remotecontrol (AllDSP AllControl) nativ unter Linux auf echtem wxGTK 3.0 — ohne Wine und ohne dekompilierten App-Code. Ausgeführt wird das unveränderte Python-2.7-Bytecode aus dem macOS-.app; C-Extensions (wxGTK/numpy/ scipy/PortAudio) kommen nativ aus Debian stretch. Enthält: va/ (Original-.pyc + pure-Python-Libs + Assets + launch.py mit den drei Linux-Fixes), Dockerfile/run.sh/entrypoint.sh, reference/ (dekompilierter Quellcode zum Debuggen) und README/STATUS. img.cache (378 MB, regenerierbar) ist per .gitignore ausgeschlossen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
75 lines
2.1 KiB
Python
75 lines
2.1 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf8 -*-
|
|
|
|
from fpdf import FPDF
|
|
import sys
|
|
|
|
fn = 'unicode.pdf'
|
|
|
|
pdf = FPDF()
|
|
pdf.add_page()
|
|
|
|
# Add a DejaVu Unicode font (uses UTF-8)
|
|
# Supports more than 200 languages. For a coverage status see:
|
|
# http://dejavu.svn.sourceforge.net/viewvc/dejavu/trunk/dejavu-fonts/langcover.txt
|
|
pdf.add_font('DejaVu','','DejaVuSansCondensed.ttf',uni=True)
|
|
pdf.set_font('DejaVu','',14)
|
|
|
|
text = u"""
|
|
English: Hello World
|
|
Greek: Γειά σου κόσμος
|
|
Polish: Witaj świecie
|
|
Portuguese: Olá mundo
|
|
Russian: Здравствуй, Мир
|
|
Vietnamese: Xin chào thế giới
|
|
Arabic: مرحبا العالم
|
|
Hebrew: שלום עולם
|
|
"""
|
|
|
|
for txt in text.split('\n'):
|
|
pdf.write(8, txt)
|
|
pdf.ln(8)
|
|
|
|
# Add a Indic Unicode font (uses UTF-8)
|
|
# Supports: Bengali, Devanagari, Gujarati,
|
|
# Gurmukhi (including the variants for Punjabi)
|
|
# Kannada, Malayalam, Oriya, Tamil, Telugu, Tibetan
|
|
pdf.add_font('gargi', '', 'gargi.ttf', uni=True)
|
|
pdf.set_font('gargi', '', 14)
|
|
pdf.write(8, u'Hindi: नमस्ते दुनिया')
|
|
pdf.ln(20)
|
|
|
|
# Add a AR PL New Sung Unicode font (uses UTF-8)
|
|
# The Open Source Chinese Font (also supports others east-asia languages)
|
|
pdf.add_font('fireflysung','','fireflysung.ttf',uni=True)
|
|
pdf.set_font('fireflysung','',14)
|
|
pdf.write(8, u'Chinese: 你好世界\n')
|
|
pdf.write(8, u'Japanese: こんにちは世界\n')
|
|
pdf.ln(10)
|
|
|
|
# Add a Alee Unicode font (uses UTF-8)
|
|
# General purpose Hangul truetype fonts that Contain Korean syllable
|
|
# and Latin9 (iso8859-15) characters.
|
|
pdf.add_font('eunjin','','Eunjin.ttf',uni=True)
|
|
pdf.set_font('eunjin','',14)
|
|
pdf.write(8, u'Korean: 안녕하세요')
|
|
pdf.ln(20)
|
|
|
|
# Add a Fonts-TLWG (formerly ThaiFonts-Scalable) (uses UTF-8)
|
|
pdf.add_font('waree','','Waree.ttf',uni=True)
|
|
pdf.set_font('waree','',14)
|
|
pdf.write(8, u'Thai: สวัสดีชาวโลก')
|
|
pdf.ln(20)
|
|
|
|
# Select a standard font (uses windows-1252)
|
|
pdf.set_font('Arial','',14)
|
|
pdf.ln(10)
|
|
pdf.write(5, 'This is standard built-in font')
|
|
|
|
pdf.output(fn,'F')
|
|
import os
|
|
try:
|
|
os.startfile(fn)
|
|
except:
|
|
os.system("evince %s" % fn)
|