BurakD.
BurakD.
CC#
Created by BurakD. on 3/17/2023 in #help
❔ Dropbox Refresh Access Token
When my access token expires, I need a code that will generate access tokens again, how can I do it?
4 replies
CC#
Created by BurakD. on 2/19/2023 in #help
❔ Do Transparent All White Pixcel
private void button3_Click(object sender, EventArgs e) { // Bir resim seçme işlemi OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "Resim Dosyaları|.jpg;.jpeg;.png;"; if (openFileDialog.ShowDialog() == DialogResult.OK) { // Resmi bir bitmap olarak yükleme Bitmap bitmap = new Bitmap(openFileDialog.FileName); for (int x = 0; x < bitmap.Width; x++) { for (int y = 0; y < bitmap.Height; y++) { // Pikselin rengini kontrol etme Color pixelColor = bitmap.GetPixel(x, y); if (pixelColor.R == 255 && pixelColor.G == 255 && pixelColor.B == 255) { // Pikseli siyah yapma bitmap.SetPixel(x, y, Color.Transparent);
} } // Değiştirilmiş resmi kaydetme } pictureBox1.Image = bitmap; SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.Filter = "Resim Dosyaları|
.jpg;.jpeg;.png;"; if (saveFileDialog.ShowDialog() == DialogResult.OK) { bitmap.Save(saveFileDialog.FileName);
} } } }
4 replies