Add files via upload
first upload..there are still things to do..
This commit is contained in:
commit
44ade113e4
10 changed files with 650 additions and 0 deletions
8
wordart.desktop
Normal file
8
wordart.desktop
Normal file
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=Krita/PythonPlugin
|
||||
X-KDE-Library=wordart
|
||||
X-Python-2-Compatible=false
|
||||
X-Krita-Manual=wordartManual.html
|
||||
Name=wordart
|
||||
Comment=url to art
|
302
wordart/ButtonArt.py
Normal file
302
wordart/ButtonArt.py
Normal file
|
@ -0,0 +1,302 @@
|
|||
# importing libraries
|
||||
import sys
|
||||
import re
|
||||
import sqlite3
|
||||
from krita import *
|
||||
from textblob import TextBlob
|
||||
from textblob_de import TextBlobDE
|
||||
from html.parser import HTMLParser
|
||||
import urllib.request
|
||||
|
||||
from PIL import ImageColor
|
||||
from PyQt5.QtWidgets import *
|
||||
from PyQt5.QtGui import *
|
||||
from PyQt5.QtCore import *
|
||||
|
||||
|
||||
# svg
|
||||
def design_svg(strokecolor, fillcolor, width, height):
|
||||
trans = str(((800 - height)/2) - 80)
|
||||
print (trans)
|
||||
#print(f'''stroke="{strokecolor}" fill="{fillcolor}"''')
|
||||
svg = f'''<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" x="0px" y="0px"
|
||||
width="{width}" height="{height}" viewBox="0 0 302.623 302.623" stroke="{strokecolor}" fill="{fillcolor}" style="enable-background:new 0 0 302.623 302.623;"
|
||||
xml:space="preserve">
|
||||
|
||||
<g>
|
||||
<g>
|
||||
<path transform="translate(20, {trans})" d="M148.185,78.801c-88.048,0-144.647,69.607-147.013,72.579c-1.682,2.114-1.54,5.14,0.334,7.076
|
||||
c41.827,43.37,89.258,65.365,140.992,65.365c87.583,0,155.568-62.5,158.423-65.167c1.083-1.013,1.691-2.415,1.701-3.895
|
||||
c0.011-1.486-0.576-2.896-1.648-3.92C251.237,103.045,199.829,78.801,148.185,78.801z M142.487,213.081
|
||||
c-47.292,0-90.941-19.706-129.805-58.573c12.746-14.097,63.71-64.948,135.503-64.948c47.312,0,94.753,21.862,141.068,65.002
|
||||
C273.106,168.02,213.777,213.081,142.487,213.081z"/>
|
||||
<path transform="translate(20, {trans})" d="M110.218,152.691c0,22.656,18.434,41.094,41.095,41.094c22.658,0,41.088-18.438,41.088-41.094
|
||||
s-18.431-41.095-41.088-41.095C128.658,111.602,110.218,130.035,110.218,152.691z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>'''.encode('utf-8')
|
||||
return(svg)
|
||||
|
||||
coffee = '''\
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px" viewBox="0 0 24 24" fill="#000000">
|
||||
<path d="M0 0h24v24H0V0z" fill="none"/>
|
||||
<path d="M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z"/>
|
||||
<text x="0.2" y="22.5" font-size="0.1em">𝕶𝖗𝖎𝖙𝖆 𝖓𝖊𝖊𝖉𝖘 𝖒𝖔𝖔𝖗𝖊 𝕮𝖔𝖋𝖋𝖊𝖊!</text>
|
||||
</svg>'''.encode('utf-8')
|
||||
|
||||
# define object/class for analysis
|
||||
class textforart:
|
||||
|
||||
def __init__(self, language = 'en', sentences_lens = [], sentences = [], commas = [], polarity = []):
|
||||
# Sprache
|
||||
self.language = language
|
||||
|
||||
# Satz
|
||||
self.senctences = sentences
|
||||
|
||||
# Sentence lengthes
|
||||
self.sentences_lens = sentence_lens
|
||||
|
||||
# Commas
|
||||
self.commas = commas
|
||||
|
||||
# Bewertung
|
||||
self.polarity = polarity
|
||||
|
||||
# Komplezität
|
||||
self.complexity = ''
|
||||
|
||||
|
||||
# Satzlänge
|
||||
self.sentence_number = len(sentences)
|
||||
self.min_sentence_length = min(sentences_lens)
|
||||
self.max_sentence_length = max(sentences_lens)
|
||||
self.mean_sentence_length = sum(sentences_lens) / len(sentences)
|
||||
|
||||
# Kommas
|
||||
self.number_commas = len(commas)
|
||||
self.min_number_commas = min(commas)
|
||||
self.max_number_commas = max(commas)
|
||||
self.mean_number_commas = len(commas)/ len(sentences)
|
||||
|
||||
# Bewertung
|
||||
self.sum_sentences_polarity = sum(polarity)
|
||||
self.min_sentences_polarity = min(polarity)
|
||||
self.max_sentences_polarity = max(polarity)
|
||||
self.mean_sentences_polarity = sum(polarity) / len(sentences)
|
||||
|
||||
# Schätzer für Komplexität
|
||||
self.max_complexity = 0
|
||||
self.min_complexity = 0
|
||||
self.mean_complexity = 0
|
||||
|
||||
# signatur Word -> mean purpose
|
||||
self.signatur_word = ''
|
||||
|
||||
recording = 0
|
||||
|
||||
# define class HTML-Parser
|
||||
class MyHTMLParser(HTMLParser):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.data = []
|
||||
self.capture = False
|
||||
|
||||
def handle_starttag(self, tag, attrs):
|
||||
if tag in ('p', 'h1'):
|
||||
self.capture = True
|
||||
|
||||
def handle_endtag(self, tag):
|
||||
if tag in ('p', 'h1'):
|
||||
self.capture = False
|
||||
|
||||
def handle_data(self, data):
|
||||
if self.capture:
|
||||
self.data.append(data)
|
||||
|
||||
|
||||
def newButtonIsClicked(self):
|
||||
# text = 'Welcome fellow human beeing ^.^'
|
||||
# print(text)
|
||||
content = line.text()
|
||||
|
||||
# aktivate Checkbox if input is done
|
||||
if line.text():
|
||||
newCheckbox.setCheckState(2)
|
||||
parser = MyHTMLParser()
|
||||
link = urllib.request.urlopen(content).read().decode()
|
||||
html = parser.feed(link)
|
||||
global linkdata
|
||||
# get data, remove newline
|
||||
linkdata = parser.data
|
||||
#print(linkdata)
|
||||
newDialog.close()
|
||||
else:
|
||||
newCheckbox.setCheckState(0)
|
||||
print('Please insert a valid Link! Thank you..')
|
||||
return
|
||||
|
||||
# print(content)
|
||||
|
||||
#
|
||||
def add_svg(svg):
|
||||
clipboard = QGuiApplication.clipboard()
|
||||
mime_data = QMimeData()
|
||||
mime_data.setData('image/svg+xml', svg)
|
||||
clipboard.setMimeData(mime_data)
|
||||
Application.action('edit_paste').trigger()
|
||||
|
||||
def create_svg(svg):
|
||||
app = Krita.instance()
|
||||
# Document open?
|
||||
#if app.activeDocument():
|
||||
#print("aktive document")
|
||||
#doc = app.activeDocument()
|
||||
#else:
|
||||
#print("create document")
|
||||
#doc = app.createDocument(800, 600, 'SVGA Test', 'RGBA', 'U8', '', 120.0)
|
||||
#app.activeWindow().addView(doc)
|
||||
|
||||
doc = app.createDocument(800, 600, 'SVGA Test', 'RGBA', 'U8', '', 120.0)
|
||||
app.activeWindow().addView(doc)
|
||||
layer = doc.createVectorLayer('ColorSVG')
|
||||
layer.setName('ColorSVG')
|
||||
add_svg(svg)
|
||||
|
||||
|
||||
# add button and layout for button
|
||||
layoutForButtons = QHBoxLayout()
|
||||
newButton = QPushButton("load text")
|
||||
layoutForButtons.addWidget(newButton)
|
||||
#layoutForButtons.addSpacing(200)
|
||||
|
||||
# label
|
||||
nameLabel = QLabel()
|
||||
nameLabel.setText('Please input a link:')
|
||||
layoutForButtons.addWidget(nameLabel)
|
||||
|
||||
#input field
|
||||
line = QLineEdit()
|
||||
line.setPlaceholderText("URL")
|
||||
line.setMinimumWidth(300)
|
||||
line.setFont(QFont("console",8)) # change font
|
||||
layoutForButtons.addWidget(line)
|
||||
|
||||
|
||||
# write some actions
|
||||
clicked = 'Button clicked'
|
||||
newButton.clicked.connect(newButtonIsClicked)
|
||||
|
||||
|
||||
#add a checkbox
|
||||
newCheckbox = QCheckBox()
|
||||
newCheckbox.setText('realise input')
|
||||
link = layoutForButtons.addWidget(newCheckbox)
|
||||
|
||||
# create dialog and show it
|
||||
newDialog = QDialog()
|
||||
newDialog.setLayout(layoutForButtons)
|
||||
newDialog.setWindowTitle("Loader")
|
||||
newDialog.exec_() # show the dialog
|
||||
|
||||
# language
|
||||
language = ''
|
||||
|
||||
# filtering parsed text
|
||||
text = ""
|
||||
for phrases in linkdata:
|
||||
#print (phrases)
|
||||
#print('pre: ' + phrases)
|
||||
phrases = phrases.rstrip("\n\r+0-9[]()+")
|
||||
#print('after: ' + phrases)
|
||||
# skip unwanted characters
|
||||
text = text + phrases
|
||||
#print('get: ' + phrases)
|
||||
|
||||
#print(text)
|
||||
# create textblob
|
||||
blob = TextBlob(text)
|
||||
#print(blob.tags)
|
||||
|
||||
for w in blob.words:
|
||||
if re.match(r"and", w):
|
||||
language = 'en'
|
||||
elif re.match(r"und", w):
|
||||
language = 'de'
|
||||
|
||||
#print(language)
|
||||
if language == 'de':
|
||||
blob = TextBlobDE(text)
|
||||
|
||||
|
||||
sentence_lens = []
|
||||
commas = []
|
||||
polarity = []
|
||||
|
||||
# number of sentences
|
||||
# print (len(blob.sentences))
|
||||
|
||||
|
||||
|
||||
#print(art.sentence_number)
|
||||
|
||||
#artob.sentenc_number
|
||||
|
||||
# print polarity of sentences
|
||||
for sentence in blob.sentences:
|
||||
|
||||
# length of sentences
|
||||
sentence_lens.append(len(sentence))
|
||||
|
||||
# number of commas
|
||||
commas.append(len(re.findall(',', str(sentence))))
|
||||
|
||||
# polarity
|
||||
polarity.append(sentence.sentiment.polarity)
|
||||
|
||||
# init new textforart object
|
||||
art = textforart(language, sentence_lens, blob.sentences, commas, polarity)
|
||||
|
||||
print(art.mean_sentence_length)
|
||||
print(art.mean_number_commas)
|
||||
print(art.min_number_commas)
|
||||
print(art.max_number_commas)
|
||||
print(art.mean_sentences_polarity)
|
||||
print(art.max_sentences_polarity)
|
||||
print(art.min_sentences_polarity)
|
||||
|
||||
#print(blob.ngrams(n=1))
|
||||
|
||||
#print(blob.words)
|
||||
|
||||
|
||||
# make art out of object
|
||||
|
||||
# width: 0 - 700
|
||||
# height: 0 - 700
|
||||
# fill color:#000000 # stroke color:#000000
|
||||
stroke = "rgb(" + str(round(125*(1/art.mean_number_commas))) + ", " + str(round(125 - art.min_sentences_polarity)) + ", " + str(round(125 - art.max_sentences_polarity)) + ")"
|
||||
fill = "rgb(" + str(round(125*(1/art.mean_number_commas))) + ", " + str(round(125 - art.min_sentences_polarity)) + ", " + str(round(125 - art.max_sentences_polarity)) + ")"
|
||||
#ImageColor.getcolor("#23a9dd", "RGB")
|
||||
|
||||
#stroke = "rgb(255, 255, 255)"
|
||||
#stroke = "rgb(255, 254, 94.)"
|
||||
#fill = "rgb(255, 255, 255)"
|
||||
|
||||
print(stroke)
|
||||
print(fill)
|
||||
|
||||
|
||||
# define with of svg
|
||||
heigh = 700- (10000*art.mean_sentences_polarity)
|
||||
width = 700*art.mean_number_commas
|
||||
|
||||
svg = design_svg(stroke, fill, 700, 700)
|
||||
create_svg(svg)
|
||||
|
||||
#print(textblob)
|
||||
|
||||
|
2
wordart/README.md
Normal file
2
wordart/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Art
|
||||
# Art
|
12
wordart/__init__.py
Normal file
12
wordart/__init__.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from krita import DockWidgetFactory, DockWidgetFactoryBase
|
||||
from wordart.wordart import *
|
||||
|
||||
DOCKER_ID = 'DockerLinkGrepper'
|
||||
instance = Krita.instance()
|
||||
|
||||
dock_widget_factory = DockWidgetFactory(DOCKER_ID,
|
||||
DockWidgetFactoryBase.DockRight,
|
||||
DockerLinkGrepper)
|
||||
|
||||
instance.addDockWidgetFactory(dock_widget_factory)
|
||||
|
BIN
wordart/__pycache__/__ini__.cpython-37.pyc
Normal file
BIN
wordart/__pycache__/__ini__.cpython-37.pyc
Normal file
Binary file not shown.
BIN
wordart/__pycache__/__init__.cpython-37.pyc
Normal file
BIN
wordart/__pycache__/__init__.cpython-37.pyc
Normal file
Binary file not shown.
BIN
wordart/__pycache__/wordart.cpython-37.pyc
Normal file
BIN
wordart/__pycache__/wordart.cpython-37.pyc
Normal file
Binary file not shown.
35
wordart/svg_vorlagen.py
Normal file
35
wordart/svg_vorlagen.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
from PIL import ImageColor
|
||||
from PyQt5.QtWidgets import *
|
||||
from PyQt5.QtGui import *
|
||||
from PyQt5.QtCore import *
|
||||
|
||||
import sys
|
||||
import sys
|
||||
import re
|
||||
from krita import *
|
||||
import sip
|
||||
|
||||
# svg
|
||||
def design_svg(strokecolor, fillcolor, width, height):
|
||||
trans = str(((800 - height)/2) - 80)
|
||||
#print (trans)
|
||||
#print(f'''stroke="{strokecolor}" fill="{fillcolor}"''')
|
||||
svg = f'''<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" x="0px" y="0px"
|
||||
width="{width}" height="{height}" viewBox="0 0 302.623 302.623" stroke="{strokecolor}" fill="{fillcolor}" style="enable-background:new 0 0 302.623 302.623;"
|
||||
xml:space="preserve">
|
||||
|
||||
<g>
|
||||
<g>
|
||||
<path transform="translate(20, {trans})" d="M148.185,78.801c-88.048,0-144.647,69.607-147.013,72.579c-1.682,2.114-1.54,5.14,0.334,7.076
|
||||
c41.827,43.37,89.258,65.365,140.992,65.365c87.583,0,155.568-62.5,158.423-65.167c1.083-1.013,1.691-2.415,1.701-3.895
|
||||
c0.011-1.486-0.576-2.896-1.648-3.92C251.237,103.045,199.829,78.801,148.185,78.801z M142.487,213.081
|
||||
c-47.292,0-90.941-19.706-129.805-58.573c12.746-14.097,63.71-64.948,135.503-64.948c47.312,0,94.753,21.862,141.068,65.002
|
||||
C273.106,168.02,213.777,213.081,142.487,213.081z"/>
|
||||
<path transform="translate(20, {trans})" d="M110.218,152.691c0,22.656,18.434,41.094,41.095,41.094c22.658,0,41.088-18.438,41.088-41.094
|
||||
s-18.431-41.095-41.088-41.095C128.658,111.602,110.218,130.035,110.218,152.691z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>'''.encode('utf-8')
|
||||
return(svg)
|
279
wordart/wordart.py
Normal file
279
wordart/wordart.py
Normal file
|
@ -0,0 +1,279 @@
|
|||
# importing libraries
|
||||
import sys
|
||||
import re
|
||||
import sqlite3
|
||||
from krita import *
|
||||
from textblob import TextBlob
|
||||
from textblob_de import TextBlobDE
|
||||
from html.parser import HTMLParser
|
||||
import urllib.request
|
||||
|
||||
from PIL import ImageColor
|
||||
from PyQt5.QtWidgets import *
|
||||
from PyQt5.QtGui import *
|
||||
from PyQt5.QtCore import *
|
||||
|
||||
|
||||
# define class HTML-Parser
|
||||
class MyHTMLParser(HTMLParser):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.data = []
|
||||
self.capture = False
|
||||
|
||||
def handle_starttag(self, tag, attrs):
|
||||
if tag in ('p', 'h1'):
|
||||
self.capture = True
|
||||
|
||||
def handle_endtag(self, tag):
|
||||
if tag in ('p', 'h1'):
|
||||
self.capture = False
|
||||
|
||||
def handle_data(self, data):
|
||||
if self.capture:
|
||||
self.data.append(data)
|
||||
|
||||
|
||||
# define object/class for analysis
|
||||
class textforart:
|
||||
|
||||
def __init__(self, language = 'en', sentences_lens = [], sentences = [], commas = [], polarity = []):
|
||||
# Sprache
|
||||
self.language = language
|
||||
|
||||
# Satz
|
||||
self.senctences = sentences
|
||||
|
||||
# Sentence lengthes
|
||||
self.sentences_lens = sentence_lens
|
||||
|
||||
# Commas
|
||||
self.commas = commas
|
||||
|
||||
# Bewertung
|
||||
self.polarity = polarity
|
||||
|
||||
# Komplezität
|
||||
self.complexity = ''
|
||||
|
||||
|
||||
# Satzlänge
|
||||
self.sentence_number = len(sentences)
|
||||
self.min_sentence_length = min(sentences_lens)
|
||||
self.max_sentence_length = max(sentences_lens)
|
||||
self.mean_sentence_length = sum(sentences_lens) / len(sentences)
|
||||
|
||||
# Kommas
|
||||
self.number_commas = len(commas)
|
||||
self.min_number_commas = min(commas)
|
||||
self.max_number_commas = max(commas)
|
||||
self.mean_number_commas = len(commas)/ len(sentences)
|
||||
|
||||
# Bewertung
|
||||
self.sum_sentences_polarity = sum(polarity)
|
||||
self.min_sentences_polarity = min(polarity)
|
||||
self.max_sentences_polarity = max(polarity)
|
||||
self.mean_sentences_polarity = sum(polarity) / len(sentences)
|
||||
|
||||
# Schätzer für Komplexität
|
||||
self.max_complexity = 0
|
||||
self.min_complexity = 0
|
||||
self.mean_complexity = 0
|
||||
|
||||
# signatur Word -> mean purpose
|
||||
self.signatur_word = ''
|
||||
|
||||
|
||||
class DockerLinkGrepper(DockWidget):
|
||||
|
||||
|
||||
# svg
|
||||
def design_svg(strokecolor, fillcolor, width, height):
|
||||
trans = str(((800 - height)/2) - 80)
|
||||
print (trans)
|
||||
#print(f'''stroke="{strokecolor}" fill="{fillcolor}"''')
|
||||
svg = f'''<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Capa_1" x="0px" y="0px"
|
||||
width="{width}" height="{height}" viewBox="0 0 302.623 302.623" stroke="{strokecolor}" fill="{fillcolor}" style="enable-background:new 0 0 302.623 302.623;"
|
||||
xml:space="preserve">
|
||||
|
||||
<g>
|
||||
<g>
|
||||
<path transform="translate(20, {trans})" d="M148.185,78.801c-88.048,0-144.647,69.607-147.013,72.579c-1.682,2.114-1.54,5.14,0.334,7.076
|
||||
c41.827,43.37,89.258,65.365,140.992,65.365c87.583,0,155.568-62.5,158.423-65.167c1.083-1.013,1.691-2.415,1.701-3.895
|
||||
c0.011-1.486-0.576-2.896-1.648-3.92C251.237,103.045,199.829,78.801,148.185,78.801z M142.487,213.081
|
||||
c-47.292,0-90.941-19.706-129.805-58.573c12.746-14.097,63.71-64.948,135.503-64.948c47.312,0,94.753,21.862,141.068,65.002
|
||||
C273.106,168.02,213.777,213.081,142.487,213.081z"/>
|
||||
<path transform="translate(20, {trans})" d="M110.218,152.691c0,22.656,18.434,41.094,41.095,41.094c22.658,0,41.088-18.438,41.088-41.094
|
||||
s-18.431-41.095-41.088-41.095C128.658,111.602,110.218,130.035,110.218,152.691z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>'''.encode('utf-8')
|
||||
return(svg)
|
||||
|
||||
coffee = '''\
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px" viewBox="0 0 24 24" fill="#000000">
|
||||
<path d="M0 0h24v24H0V0z" fill="none"/>
|
||||
<path d="M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z"/>
|
||||
<text x="0.2" y="22.5" font-size="0.1em">𝕶𝖗𝖎𝖙𝖆 𝖓𝖊𝖊𝖉𝖘 𝖒𝖔𝖔𝖗𝖊 𝕮𝖔𝖋𝖋𝖊𝖊!</text>
|
||||
</svg>'''.encode('utf-8')
|
||||
|
||||
|
||||
recording = 0
|
||||
|
||||
|
||||
|
||||
def newButtonIsClicked(self):
|
||||
text = 'Welcome fellow human beeing ^.^'
|
||||
print(text)
|
||||
#content = line.text()
|
||||
|
||||
# aktivate Checkbox if input is done
|
||||
#if line.text():
|
||||
# newCheckbox.setCheckState(2)
|
||||
#parser = MyHTMLParser()
|
||||
#link = urllib.request.urlopen(content).read().decode()
|
||||
#html = parser.feed(link)
|
||||
#global linkdata
|
||||
# get data, remove newline
|
||||
#linkdata = parser.data
|
||||
#print(linkdata)
|
||||
#newDialog.close()
|
||||
#else:
|
||||
#newCheckbox.setCheckState(0)
|
||||
#print('Please insert a valid Link! Thank you..')
|
||||
#return
|
||||
|
||||
def add_svg(svg):
|
||||
clipboard = QGuiApplication.clipboard()
|
||||
mime_data = QMimeData()
|
||||
mime_data.setData('image/svg+xml', svg)
|
||||
clipboard.setMimeData(mime_data)
|
||||
Application.action('edit_paste').trigger()
|
||||
|
||||
def create_svg(svg):
|
||||
app = Krita.instance()
|
||||
# Document open?
|
||||
#if app.activeDocument():
|
||||
#print("aktive document")
|
||||
#doc = app.activeDocument()
|
||||
#else:
|
||||
#print("create document")
|
||||
#doc = app.createDocument(800, 600, 'SVGA Test', 'RGBA', 'U8', '', 120.0)
|
||||
#app.activeWindow().addView(doc)
|
||||
|
||||
doc = app.createDocument(800, 600, 'SVGA Test', 'RGBA', 'U8', '', 120.0)
|
||||
app.activeWindow().addView(doc)
|
||||
layer = doc.createVectorLayer('ColorSVG')
|
||||
layer.setName('ColorSVG')
|
||||
add_svg(svg)
|
||||
|
||||
|
||||
# add button and layout for button
|
||||
layoutForButtons = QHBoxLayout()
|
||||
newButton = QPushButton("load text")
|
||||
layoutForButtons.addWidget(newButton)
|
||||
#layoutForButtons.addSpacing(200)
|
||||
|
||||
# label
|
||||
nameLabel = QLabel()
|
||||
nameLabel.setText('Please input a link:')
|
||||
layoutForButtons.addWidget(nameLabel)
|
||||
|
||||
#input field
|
||||
line = QLineEdit()
|
||||
line.setPlaceholderText("URL")
|
||||
line.setMinimumWidth(300)
|
||||
line.setFont(QFont("console",8)) # change font
|
||||
layoutForButtons.addWidget(line)
|
||||
|
||||
|
||||
# write some actions
|
||||
clicked = 'Button clicked'
|
||||
newButton.clicked.connect(newButtonIsClicked)
|
||||
|
||||
|
||||
#add a checkbox
|
||||
newCheckbox = QCheckBox()
|
||||
newCheckbox.setText('realise input')
|
||||
link = layoutForButtons.addWidget(newCheckbox)
|
||||
|
||||
# create dialog and show it
|
||||
newDialog = QDialog()
|
||||
newDialog.setLayout(layoutForButtons)
|
||||
newDialog.setWindowTitle("Loader")
|
||||
newDialog.exec_() # show the dialog
|
||||
|
||||
# language
|
||||
language = ''
|
||||
|
||||
# filtering parsed text
|
||||
text = ""
|
||||
for phrases in linkdata:
|
||||
#print (phrases)
|
||||
#print('pre: ' + phrases)
|
||||
phrases = phrases.rstrip("\n\r+0-9[]()+")
|
||||
#print('after: ' + phrases)
|
||||
# skip unwanted characters
|
||||
text = text + phrases
|
||||
#print('get: ' + phrases)
|
||||
|
||||
#print(text)
|
||||
# create textblob
|
||||
blob = TextBlob(text)
|
||||
#print(blob.tags)
|
||||
|
||||
for w in blob.words:
|
||||
if re.match(r"and", w):
|
||||
language = 'en'
|
||||
elif re.match(r"und", w):
|
||||
language = 'de'
|
||||
|
||||
#print(language)
|
||||
if language == 'de':
|
||||
blob = TextBlobDE(text)
|
||||
|
||||
sentence_lens = []
|
||||
commas = []
|
||||
polarity = []
|
||||
|
||||
# print polarity of sentences
|
||||
for sentence in blob.sentences:
|
||||
|
||||
# length of sentences
|
||||
sentence_lens.append(len(sentence))
|
||||
|
||||
# number of commas
|
||||
commas.append(len(re.findall(',', str(sentence))))
|
||||
|
||||
# polarity
|
||||
polarity.append(sentence.sentiment.polarity)
|
||||
|
||||
# init new textforart object
|
||||
art = textforart(language, sentence_lens, blob.sentences, commas, polarity)
|
||||
|
||||
# make art out of object
|
||||
|
||||
# width: 0 - 700
|
||||
# height: 0 - 700
|
||||
# fill color:#000000 # stroke color:#000000
|
||||
stroke = "rgb(" + str(round(125*(1/art.mean_number_commas))) + ", " + str(round(125 - art.min_sentences_polarity)) + ", " + str(round(125 - art.max_sentences_polarity)) + ")"
|
||||
fill = "rgb(" + str(round(125*(1/art.mean_number_commas))) + ", " + str(round(125 - art.min_sentences_polarity)) + ", " + str(round(125 - art.max_sentences_polarity)) + ")"
|
||||
#ImageColor.getcolor("#23a9dd", "RGB")
|
||||
|
||||
#stroke = "rgb(255, 255, 255)"
|
||||
#stroke = "rgb(255, 254, 94.)"
|
||||
#fill = "rgb(255, 255, 255)"
|
||||
|
||||
# define with of svg
|
||||
heigh = 700- (10000*art.mean_sentences_polarity)
|
||||
width = 700*art.mean_number_commas
|
||||
|
||||
svg = design_svg(stroke, fill, 700, 700)
|
||||
create_svg(svg)
|
||||
|
||||
def canvasChanged(self, canvas):
|
||||
pass
|
||||
|
12
wordart/wordartManual.html
Normal file
12
wordart/wordartManual.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title>Word Art</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Word Art</h1>
|
||||
<p>This is a python plugin for in Krita to automatically draw SVGs.</p>
|
||||
<p>The source code can be found at <a href="..</a></p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue