Making an Image Profile UI command in Discord.py

  Рет қаралды 15,303

Code Stacks

Code Stacks

Күн бұрын

Пікірлер: 53
@harshak8535
@harshak8535 3 жыл бұрын
mark my words this video will become popular within few weeks and the design and template matched perfectly overall thats so cool
@CodeStacks
@CodeStacks 3 жыл бұрын
woow thanks duh :)
@harshak8535
@harshak8535 3 жыл бұрын
@@CodeStacks im getting an error where u tried to make the pfp into a circle it shows "circle" isnt defined wt can i do?
@CodeStacks
@CodeStacks 3 жыл бұрын
@@harshak8535 u need to define the circle function, I've given it's code in here - kzbin.info/www/bejne/gmGodKSXoZWpqKc
@CodeStacks
@CodeStacks 3 жыл бұрын
here is the code btw - def circle(pfp,size = (215,215)): pfp = pfp.resize(size, Image.ANTIALIAS).convert("RGBA") bigsize = (pfp.size[0] * 3, pfp.size[1] * 3) mask = Image.new('L', bigsize, 0) draw = ImageDraw.Draw(mask) draw.ellipse((0, 0) + bigsize, fill=255) mask = mask.resize(pfp.size, Image.ANTIALIAS) mask = ImageChops.darker(mask, pfp.split()[-1]) pfp.putalpha(mask) return pfp
@harshak8535
@harshak8535 3 жыл бұрын
@@CodeStacks thanks
@CodeStacks
@CodeStacks 3 жыл бұрын
Comments and suggestions are highly appreciated, Thank you 😁
@fureai9143
@fureai9143 3 жыл бұрын
might pin this comment ;)
@CodeStacks
@CodeStacks 3 жыл бұрын
@@fureai9143 did but now some other comment seems to be of more worth 😁
@MURTESA_gamer
@MURTESA_gamer 6 ай бұрын
you give good idea thanks 🔥🔥🔥🔥
@avcreatorscoding7536
@avcreatorscoding7536 3 жыл бұрын
Very nice video!
@CodeStacks
@CodeStacks 3 жыл бұрын
You can subscribe to the channel for more such videos 🙂
@avcreatorscoding7536
@avcreatorscoding7536 3 жыл бұрын
Sure why not 👌
@CodeStacks
@CodeStacks 3 жыл бұрын
If you receive the error sayin circle not defined then you need to define the function just above your Information cog , I've given it's code in this video's description
@CodeStacks
@CodeStacks 3 жыл бұрын
def circle(pfp,size = (215,215)): pfp = pfp.resize(size, Image.ANTIALIAS).convert("RGBA") bigsize = (pfp.size[0] * 3, pfp.size[1] * 3) mask = Image.new('L', bigsize, 0) draw = ImageDraw.Draw(mask) draw.ellipse((0, 0) + bigsize, fill=255) mask = mask.resize(pfp.size, Image.ANTIALIAS) mask = ImageChops.darker(mask, pfp.split()[-1]) pfp.putalpha(mask) return pfp
@chibi630
@chibi630 3 жыл бұрын
Loved the design, added it to my bot and gave you credit. Keep up the great work!
@CodeStacks
@CodeStacks 3 жыл бұрын
Awesome, thank you! 😁
@sat5892
@sat5892 3 жыл бұрын
Thank you . Very good video
@CodeStacks
@CodeStacks 3 жыл бұрын
Thank you :)
@agenthydra9599
@agenthydra9599 3 жыл бұрын
Good vid made it easy to understand for me
@CodeStacks
@CodeStacks 3 жыл бұрын
Thanks for commenting
@Nevvyboi
@Nevvyboi 3 жыл бұрын
Amazing video | suggestion? Afk database?
@CodeStacks
@CodeStacks 3 жыл бұрын
sure imma create one video on it very soon
@krosh1k510
@krosh1k510 3 жыл бұрын
Hello. I've got this error "_request() got an unexpected keyword argument 'form'". Can you help me please?
@CodeStacks
@CodeStacks 3 жыл бұрын
can you please refer to which part of code is it showing this
@okbyeeee9412
@okbyeeee9412 3 жыл бұрын
it say's "NameError: name 'Image' is not defined" on the "pfp = Image.open(data).convert("RGBA")" part, can you help?
@CodeStacks
@CodeStacks 3 жыл бұрын
Have you imported Image from PIL?
@ShadowPro-op5tn
@ShadowPro-op5tn 3 жыл бұрын
OP
@CodeStacks
@CodeStacks 3 жыл бұрын
Thenks duh 😏
@IdoLi
@IdoLi 3 жыл бұрын
Hey, i get an error: ctx is an argument that is missing. can you help me?
@CodeStacks
@CodeStacks 3 жыл бұрын
Can you show your code once
@scfs2.0
@scfs2.0 3 жыл бұрын
Looks like PIL shutdown Error: Could not find a version that satisfies the requirements
@CodeStacks
@CodeStacks 3 жыл бұрын
let the machine run, generally it finds the desirable version
@0f4gatto_feelin
@0f4gatto_feelin 2 жыл бұрын
error: ctx is a required argument that is missing.
@CodeStacks
@CodeStacks 2 жыл бұрын
u didn't provide ctx argument
@EX3Music
@EX3Music 2 жыл бұрын
How do i make my own template ?? Is tehre any free software as i don't have adobe
@CodeStacks
@CodeStacks 2 жыл бұрын
well you don't need adobe, you can use gimp or other online softwares, and there is web version of PS for free
@울지마-v4c
@울지마-v4c 2 жыл бұрын
Its not working :((
@karoonatrip
@karoonatrip 3 жыл бұрын
can we get the source
@ruchikharb188
@ruchikharb188 3 жыл бұрын
3.5K views woohooooooo! 🤩🥳
@CodeStacks
@CodeStacks 3 жыл бұрын
Lmao someone's keeping a friggin track , GG
@fureai9143
@fureai9143 3 жыл бұрын
uwu background
@trapper05
@trapper05 3 жыл бұрын
Is there a way to make this in discord.js?
@CodeStacks
@CodeStacks 3 жыл бұрын
Yes apparently, and to be honest, js got better modules for image manipulation, so it can be done more efficiently
@glitch7782
@glitch7782 3 жыл бұрын
Bro it doesn’t work
@CodeStacks
@CodeStacks 3 жыл бұрын
what does it say sir? any errors
@maxthemunchkin
@maxthemunchkin 2 жыл бұрын
can you post the source code
@CodeStacks
@CodeStacks 2 жыл бұрын
Ye sure you can ask that in my server
@elhyas6840
@elhyas6840 3 жыл бұрын
+ 1
@CodeStacks
@CodeStacks 3 жыл бұрын
:))
Making Anime commands in Discord.py with Animec
18:48
Code Stacks
Рет қаралды 3,8 М.
Making Tetris Using Discord's Bot API
5:54
Will 404
Рет қаралды 53 М.
진짜✅ 아님 가짜❌???
0:21
승비니 Seungbini
Рет қаралды 10 МЛН
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
She wanted to set me up #shorts by Tsuriki Show
0:56
Tsuriki Show
Рет қаралды 8 МЛН
«Жат бауыр» телехикаясы І 26-бөлім
52:18
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 434 М.
6 Ways to Troll your Discord Friends (that don't exist)
7:42
No Text To Speech
Рет қаралды 1,6 МЛН
Image Manipulation with Python
17:57
Code Stacks
Рет қаралды 734
Discord.py Give users Roles based on Reaction in Python
15:14
ExceedCodes
Рет қаралды 14 М.
[NEW] Bot Dashboard Part One | Nextcord and Discord.py
18:22
Glowstik
Рет қаралды 10 М.
How I make bots using python (educational)
17:12
Kian Brose
Рет қаралды 572 М.
Discord.py: Making a Discord bot (Part 15: Level System)
17:03
진짜✅ 아님 가짜❌???
0:21
승비니 Seungbini
Рет қаралды 10 МЛН