maamokun commited on
Commit
a9dedf0
·
1 Parent(s): 9b007ae

アップロード

Browse files
Files changed (3) hide show
  1. LICENSE +9 -0
  2. images/base-gd-flipped.png +0 -0
  3. main.py +102 -7
LICENSE ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (C) 2022-2023 CyberRex
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
images/base-gd-flipped.png ADDED
main.py CHANGED
@@ -6,12 +6,15 @@ import requests
6
  import warnings
7
  import base64
8
  import io
 
9
 
10
  warnings.simplefilter("ignore")
11
 
12
  BASE_GD_IMAGE = Image.open("images/base-gd.png")
 
13
  BASE_IMAGE = Image.open("images/base.png")
14
  MPLUS_FONT = ImageFont.truetype("fonts/MPLUSRounded1c-Regular.ttf", size=16)
 
15
 
16
 
17
  def draw_text(
@@ -104,7 +107,7 @@ def make(name, tag, id, content, icon):
104
  tsize_id = draw_text(img, (890, id_y), id, size=18, color=(
105
  180, 180, 180, 255), split_len=45, disable_dot_wrap=True)
106
 
107
- tx.text((1125, 694), "TakasumiBOT#7189",
108
  font=MPLUS_FONT, fill=(120, 120, 120, 255))
109
 
110
  file = io.BytesIO()
@@ -112,22 +115,114 @@ def make(name, tag, id, content, icon):
112
  file.seek(0)
113
  return file
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
 
116
  app = Flask(__name__)
117
 
118
 
119
- @app.route("/", methods=["GET"])
120
- def main():
121
  res = make(
122
- request.args.get("name") or "名無し",
123
- request.args.get("tag") or "0000",
 
 
 
 
 
 
 
 
 
 
 
 
124
  request.args.get("id") or "0000000000000000000",
125
- request.args.get("content") or "これはテストです",
126
  request.args.get(
127
- "icon") or "https://cdn.discordapp.com/embed/avatars/0.png"
128
  )
129
  return send_file(res, mimetype="image/png")
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
  if __name__ == "__main__":
133
  app.run(host="0.0.0.0", port=3000)
 
6
  import warnings
7
  import base64
8
  import io
9
+ import os
10
 
11
  warnings.simplefilter("ignore")
12
 
13
  BASE_GD_IMAGE = Image.open("images/base-gd.png")
14
+ BASE_FLIPPED_IMAGE = Image.open("images/base-gd-flipped.png")
15
  BASE_IMAGE = Image.open("images/base.png")
16
  MPLUS_FONT = ImageFont.truetype("fonts/MPLUSRounded1c-Regular.ttf", size=16)
17
+ branding = "Change this to the text of your choice"
18
 
19
 
20
  def draw_text(
 
107
  tsize_id = draw_text(img, (890, id_y), id, size=18, color=(
108
  180, 180, 180, 255), split_len=45, disable_dot_wrap=True)
109
 
110
+ tx.text((1125, 694), branding,
111
  font=MPLUS_FONT, fill=(120, 120, 120, 255))
112
 
113
  file = io.BytesIO()
 
115
  file.seek(0)
116
  return file
117
 
118
+ def colourmake(name, tag, id, content, icon):
119
+ img = BASE_IMAGE.copy()
120
+
121
+ icon = Image.open(io.BytesIO(requests.get(icon).content))
122
+ icon = icon.resize((720, 720), Image.LANCZOS)
123
+ icon_filtered = ImageEnhance.Brightness(icon)
124
+
125
+ img.paste(icon_filtered.enhance(0.7), (0, 0))
126
+ img.paste(BASE_GD_IMAGE, (0, 0), BASE_GD_IMAGE)
127
+
128
+ tx = ImageDraw.Draw(img)
129
+
130
+ tsize_t = draw_text(img, (890, 270), content, size=45, color=(
131
+ 255, 255, 255, 255), split_len=16, auto_expand=True)
132
+
133
+ name_y = tsize_t[2] + 40
134
+ tsize_name = draw_text(img, (890, name_y), f"{name}#{tag}", size=25, color=(
135
+ 255, 255, 255, 255), split_len=25, disable_dot_wrap=True)
136
+
137
+ id_y = name_y + tsize_name[1] + 4
138
+ tsize_id = draw_text(img, (890, id_y), id, size=18, color=(
139
+ 180, 180, 180, 255), split_len=45, disable_dot_wrap=True)
140
+
141
+ tx.text((1125, 694), branding,
142
+ font=MPLUS_FONT, fill=(120, 120, 120, 255))
143
+
144
+ file = io.BytesIO()
145
+ img.save(file, format="PNG", quality=95)
146
+ file.seek(0)
147
+ return file
148
+
149
+ def reversemake(name, tag, id, content, icon):
150
+ img = BASE_IMAGE.copy()
151
+
152
+ icon = Image.open(io.BytesIO(requests.get(icon).content))
153
+ icon = icon.resize((720, 720), Image.LANCZOS)
154
+ icon = icon.convert("L")
155
+ icon_filtered = ImageEnhance.Brightness(icon)
156
+
157
+ img.paste(icon_filtered.enhance(0.7), (570, 0))
158
+ img.paste(BASE_FLIPPED_IMAGE, (0, 0), BASE_FLIPPED_IMAGE)
159
+
160
+ tx = ImageDraw.Draw(img)
161
+
162
+ tsize_t = draw_text(img, (390, 270), content, size=45, color=(
163
+ 255, 255, 255, 255), split_len=16, auto_expand=True)
164
+
165
+ name_y = tsize_t[2] + 40
166
+ tsize_name = draw_text(img, (390, name_y), f"{name}#{tag}", size=25, color=(
167
+ 255, 255, 255, 255), split_len=25, disable_dot_wrap=True)
168
+
169
+ id_y = name_y + tsize_name[1] + 4
170
+ tsize_id = draw_text(img, (390, id_y), id, size=18, color=(
171
+ 180, 180, 180, 255), split_len=45, disable_dot_wrap=True)
172
+
173
+ tx.text((15, 694), branding,
174
+ font=MPLUS_FONT, fill=(120, 120, 120, 255))
175
+
176
+ file = io.BytesIO()
177
+ img.save(file, format="PNG", quality=95)
178
+ file.seek(0)
179
+ return file
180
+
181
+
182
 
183
  app = Flask(__name__)
184
 
185
 
186
+ @app.route("/original", methods=["GET"])
187
+ def original():
188
  res = make(
189
+ request.args.get("name") or "SAMPLE",
190
+ request.args.get("tag") or "1234",
191
+ request.args.get("id") or "0000000000000000000",
192
+ request.args.get("content") or "This isn't a very good quote unless you say something",
193
+ request.args.get(
194
+ "icon") or "https://cdn.mikn.dev/MikanBot.png"
195
+ )
196
+ return send_file(res, mimetype="image/png")
197
+
198
+ @app.route("/colour", methods=["GET"])
199
+ def colour():
200
+ res = colourmake(
201
+ request.args.get("name") or "SAMPLE",
202
+ request.args.get("tag") or "1234",
203
  request.args.get("id") or "0000000000000000000",
204
+ request.args.get("content") or "This isn't a very good quote unless you say something",
205
  request.args.get(
206
+ "icon") or "https://cdn.mikn.dev/MikanBot.png"
207
  )
208
  return send_file(res, mimetype="image/png")
209
 
210
+ @app.route("/reverse", methods=["GET"])
211
+ def reverse():
212
+ res = reversemake(
213
+ request.args.get("name") or "SAMPLE",
214
+ request.args.get("tag") or "1234",
215
+ request.args.get("id") or "0000000000000000000",
216
+ request.args.get("content") or "This isn't a very good quote unless you say something",
217
+ request.args.get(
218
+ "icon") or "https://cdn.mikn.dev/MikanBot.png"
219
+ )
220
+ return send_file(res, mimetype="image/png")
221
+
222
+ @app.route("/", methods=["GET"])
223
+ def main():
224
+ return 'API URL: https://miq-api.mikanbot.com/<br><br>Endpoints<br>/original Original B&W MiaQ image<br>/colour MiaQ image with coloured icon<br>/reverse MiaQ image with flipped icon position<br><br>Query Parameters<br>name: Username<br>tag: Tag<br>id: User ID<br>icon: Icon URL<br>content: Message Content<br><br>Host your own API here! (https://github.com/maamokun/miq-api)<br>Original code from Taka005 (https://github.com/Taka005/miq)'
225
+
226
 
227
  if __name__ == "__main__":
228
  app.run(host="0.0.0.0", port=3000)