İlk soru, lütfen nazik olun ;-)
I've written an image class that makes simple things (rectangles, text) a bit easier, basically a bunch of wrapper methods for PHP's image functions.
What I'm trying to do now is to allow the user to define a selection, and have the following image operations only affect the selected area. I figured I'd do this by copying the image to imgTwo and deleting the selected area from it, do the following image operations on the original as usual, then when $img->deselect() is called, copy imgTwo back to the original, and destroy the copy.
- Bu en iyi yolu nedir? Açıkçası seçilmiş bir alan içinde, seçimi kaldırılan alanları tanımlamak için zor olacak ama ben şimdi bununla yaşayabilirim :)
Sonra, ben kopyadan seçimi siliyorum yolu çalışan şeffaf bir renk, bir dikdörtgen çizerek - ama emin olurken onu farkeder nasıl choose bu renk bilemiyorum 't görüntünün geri kalanı meydana gelir. Bu uygulamada giriş görüntüleri gerçek renk PNG, yani renk indeksleri ile hiçbir palet (sanırım?) Vardır.
- Doğru .. her pikselin renklerini toplamak ve daha sonra $ existing_colours dizide görünmeyen bir renk bulmak için daha iyi bir yolu olmalı?