-
1.
0http://imgim.com/9247incii7709357.png
al lan senin için oturdum algoritma yazdım bin
5. !/usr/bin/env python
6. --- coding:utf8 ---
from PIL import Image, ImageMath
image = Image.open("/home/mnrl/Masaüstü/y6.jpg")
def difference1(source, color):
"""When source is bigger than color"""
return (source - color) / (255.0 - color)
def difference2(source, color):
"""When color is bigger than source"""
return (color - source) / color
def color_to_alpha(image, color):
image = image.convert('RGBA')
width, height = image.size
color = map(float, color)
img_bands = [band.convert("F") for band in image.split()]
# Find the maximum difference rate between source and color. I had to use two
# difference functions because ImageMath.eval only evaluates the expression
# once.
alpha = ImageMath.eval(
"""float(
max(
max(
max(
difference1(red_band, cred_band),
difference1(green_band, cgreen_band)
),
difference1(blue_band, cblue_band)
),
max(
max(
difference2(red_band, cred_band),
difference2(green_band, cgreen_band)
),
difference2(blue_band, cblue_band)
)
)
)""",
difference1=difference1,
difference2=difference2,
red_band = img_bands[0],
green_band = img_bands[1],
blue_band = img_bands[2],
cred_band = color[0],
cgreen_band = color[1],
cblue_band = color[2]
)
# Calculate the new image colors after the removal of the selected color
new_bands = [
ImageMath.eval(
"convert((image - color) / alpha + color, 'L')",
image = img_bands[i],
color = color[i],
alpha = alpha
)
for i in xrange(3)
]
# Add the new alpha band
new_bands.append(ImageMath.eval(
"convert(alpha_band * alpha, 'L')",
alpha = alpha,
alpha_band = img_bands[3]
))
return Image.merge('RGBA', new_bands)
image = color_to_alpha(image, (0, 0, 0, 255))
7. background = Image.new('RGB', image.size, (0, 255, 255))
8. background.paste(image.convert('RGB'), mask=image)
image.save("asd.png")
-
ccc rammstein ccc günaydın diler 13 01 2025
-
çıkarınn beni bu cehennemden
-
erkek abisini gibenler listesi
-
610 bin tlsi olan adam adamın dibidir
-
ilkokuldayken siniftaki kızları döverdim
-
maske kafali ibo
-
ılki inci sozluk 3 ay uyeligi kapatiniz
-
amlı varmı kontrole geldim
-
köylü dedemi öldürdümmm
-
konstant ile öpüşmek
-
gassaldim
-
yatiyom ben ya
-
biciksüel olmayan gay erkeklere ne denir
-
baaassslliiiikk aaaccciiin noooorrrr
-
gözümü ifşalıyorum beyyler
-
max osman benim aşkımdır
-
problemli incelleri silin amk
-
ne gassalı
-
560bin tl olan adam insan eti satiyor
-
ınci sözlük geyler odası
-
nee erkek penisimi yalayacaksınız
-
gay pataklayan allah şahidim olsun ki
-
maske kafali ibrahim nikli yazar
-
gran torino sana selam getirdim
-
beyler bu eskorta gitmeyi planlıyorum
-
çaycı hüseyin kendine bir horozz alsa
-
los angeles i serkan inci yakmış
-
gassal izleyen ve ya izlemiş ne kadar insan varsa
-
müslüman mahallesinde salyangozz
-
kaka deliğimi emmek isteyennnn
- / 2