on 25 aug
må 23 aug
on 25 aug
ti 24 aug
20:51
jesperlind:
"Project Excelsior began in 1958. The purpose of the project was to design a parachute system from which could be used for very high altitude jumps. After an ascent of one hour and 31 minutes to an altitude of 102,800 ft (The average cruising altitude of a Jumbo jet is 35,000ft) Joseph took a leap from the highest step in the world and jumped."
må 23 aug
20:23
jesperlind:
"In linguistics, annotations provide the results of an analysis of linguistic form. This can include information about morphology, syntax, semantics, discourse, or general information."
lö 21 aug
sö 15 aug
ti 17 aug
04:56
jesperlind:
The other answers was helpful and got me going, thanks a lot. I couldn't make them work though, not sure why. But I also found out that I wanted to keep the original alpha value of the pixels, rendering the edges smooth. This is what I came up with.
for (int x = 0; x < bitmap.Width; x++) { for (int y = 0; y < bitmap.Height; y++) { Color bitColor = bitmap.GetPixel(x, y); //Sets all the pixels to white but with the original alpha value bitmap.SetPixel(x, y, Color.FromArgb(bitColor.A, 255, 255, 255)); } }
Here is a screen dump of the result magnified a few times (original on top):
00:07
jesperlind:
Hi and sorry for late reply. I tried out the code right now and I can't make it work. All my pixels turns white and it doesn't leave the transparent pixels of the png's intact.