exif_imagetype | PHP 4.3.0 |
int exif_imagetype(string imagefile) |
|
Ermittelt den Dateityp eines Bilds. |
exif_read_data | PHP 4.1.0 |
array|false exif_read_data(string filename[, sections_needed[, sub_arrays[, read_thumbnail]]]) |
|
Liest Headerdaten und ggf. auch die internen Piktogramme aus der JPEG/TIFF-Datei. |
exif_thumbnail | PHP 4.1.0 |
string|false exif_thumbnail(string filename[, &width, &height[, &imagetype]]) |
|
Liest das eingebettete Piktogramm. |
getimagesize | PHP 3.0 |
array getimagesize(string imagefile[, array info]) |
|
Gibt die Größe eines Bildes als Array mit vier Elementen zurück. |
image_type_to_mime_type | PHP 4.3.0 |
array image_type_to_mime_type(int imagetype) |
|
Ermittelt den MIME-Typ für den durch getimagesize(), exif_read_data(), exif_thumbnail() und exif_imagetype() zurückgegebenen imagetype. |
image2wbmp | PHP 4.0.5 |
int image2wbmp(int im[, string filename[, int threshold]]) |
|
Zeigt ein WBMP-Bild im Browser an bzw. stellt es in eine Datei. |
imagealphablending | PHP 4.0.6 |
void imagealphablending(resource im, bool on) |
|
Aktiviert/deaktiviert den Alpha-Blending-Modus für das angegebene Bild. |
imagearc | PHP 3.0 |
int imagearc(int im, int cx, int cy, int w, int h, int s, int e, int col) |
|
Zeichnet eine Teilellipse. |
imagechar | PHP 3.0 |
int imagechar(int im, int font, int x, int y, string c, int col) |
|
Zeichnet ein Zeichen. |
imagecharup | PHP 3.0 |
int imagecharup(int im, int font, int x, int y, string c, int col) |
|
Zeichnet ein um 90 Grad gegen den Uhrzeigersinn gedrehtes Zeichen. |
imagecolorallocate | PHP 3.0 |
int imagecolorallocate(int im, int red, int green, int blue) |
|
Ordnet einem Bild eine Farbe zu. |
imagecolorat | PHP 3.0 |
int imagecolorat(int im, int x, int y) |
|
Ermittelt den Index der Farbe eines Pixels ab. |
imagecolorclosest | PHP 3.0 |
int imagecolorclosest(int im, int red, int green, int blue) |
|
Ermittelt den Index der Farbe, die der angegebenen Farbe am nächsten kommt. |
imagecolorclosestalpha | PHP 4.0.6 |
int imagecolorclosestalpha(resource im, int red, int green, int blue, int alpha) |
|
Ermittelt die passendste Farbe mit Alphatransparenz. |
imagecolorclosesthwb | PHP 4.0.1 |
int imagecolorclosesthwb(int im, int red, int green, int blue) |
|
Ermittelt den Index der Farbe, deren Farbton-, Weiß- und Schwarzwert der angegebenen Farbe am nächsten kommt. |
imagecolordeallocate | PHP 3.0.6 |
int imagecolordeallocate(int im, int index) |
|
Hebt die Farbzuordnung für ein Bild auf. |
imagecolorexact | PHP 3.0 |
int imagecolorexact(int im, int red, int green, int blue) |
|
Ermittelt den Index der angegebenen Farbe. |
imagecolorexactalpha | PHP 4.0.6 |
int imagecolorexactalpha(resource im, int red, int green, int blue, int alpha) |
|
Sucht eine genaue Übereinstimmung zur angegebenen Farbe (mit Transparenz). |
imagecolorresolve | PHP 3.0.2 |
int imagecolorresolve(int im, int red, int green, int blue) |
|
Ermittelt den Index der angegebenen Farbe bzw. der passendsten Alternative. |
imagecolorresolvealpha | PHP 4.0.6 |
int imagecolorresolvealpha(resource im, int red, int green, int blue, int alpha) |
|
Löst eine Farbe mit Alphawert auf bzw. ordnet sie zu; funktioniert bei True-Color- und palettenbasierten Bildern. |
imagecolorset | PHP 3.0 |
int imagecolorset(int im, int col, int red, int green, int blue) |
|
Legt die Farbe für den angegebenen Palettenindex fest. |
imagecolorsforindex | PHP 3.0 |
array imagecolorsforindex(int im, int col) |
|
Ermittelt die Farben für einen Index. |
imagecolorstotal | PHP 3.0 |
int imagecolorstotal(int im) |
|
Ermittelt die Anzahl der Farben in der Palette eines Bilds. |
imagecolortransparent | PHP 3.0 |
int imagecolortransparent(int im[, int col]) |
|
Definiert eine Farbe als transparent. |
imagecopy | PHP 3.0.6 |
int imagecopy(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) |
|
Kopiert einen Teil eines Bildes. |
imagecopymerge | PHP 4.0.1 |
int imagecopymerge(int src_im, int dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |
|
Führt einen Teil eines Bildes mit einem anderen zusammen. |
imagecopymergegray | PHP 4.0.6 |
int imagecopymergegray(int src_im, int dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |
|
Führt einen Teil eines Bildes mit einem anderen zusammen. |
imagecopyresampled | PHP 4.0.6 |
int imagecopyresampled(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |
|
Kopiert und skaliert einen Teil eines Bildes durch Resampling, um optimale Anzeigequalität zu gewährleisten. |
imagecopyresized | PHP 3.0 |
int imagecopyresized(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |
|
Kopiert und skaliert einen Teil eines Bildes. |
imagecreate | PHP 3.0 |
int imagecreate(int x_size, int y_size) |
|
Erstellt ein neues Bild. |
imagecreatefromgd2 | PHP 4.1.0 |
int imagecreatefromgd2(string filename) |
|
Erstellt ein neues Bild aus einer GD2-Datei oder URL. |
imagecreatefromgd2part | PHP 4.1.0 |
int imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height) |
|
Erstellt ein neues Bild aus einem bestimmten Teil einer GD2-Datei oder URL. |
imagecreatefromgd | PHP 4.1.0 |
int imagecreatefromgd(string filename) |
|
Erstellt ein neues Bild aus einer GD-Datei oder URL. |
imagecreatefromgif | PHP 3.0 |
int imagecreatefromgif(string filename) |
|
Erstellt ein neues Bild aus einer GIF-Datei oder URL. |
imagecreatefromjpeg | PHP 3.0.16 |
int imagecreatefromjpeg(string filename) |
|
Erstellt ein neues Bild aus einer JPEG-Datei oder URL. |
imagecreatefrompng | PHP 3.0.13 |
int imagecreatefrompng(string filename) |
|
Erstellt ein neues Bild aus einer PNG-Datei oder URL. |
imagecreatefromstring | PHP 4.0.4 |
int imagecreatefromstring(string image) |
|
Erstellt ein neues Bild aus dem Image-Stream im String. |
imagecreatefromwbmp | PHP 4.0.1 |
int imagecreatefromwbmp(string filename) |
|
Erstellt ein neues Bild aus einer WBMP-Datei oder URL. |
imagecreatefromxbm | PHP 4.0.1 |
int imagecreatefromxbm(string filename) |
|
Erstellt ein neues Bild aus einer XBM-Datei oder URL. |
imagecreatefromxpm | PHP 4.0.1 |
int imagecreatefromxpm(string filename) |
|
Erstellt ein neues Bild aus einer XPM-Datei oder URL. |
imagecreatetruecolor | PHP 4.0.6 |
int imagecreatetruecolor(int x_size, int y_size) |
|
Erstellt ein neues True-Color-Bild. |
imagedashedline | PHP 3.0 |
int imagedashedline(int im, int x1, int y1, int x2, int y2, int col) |
|
Zeichnet eine gestrichelte Linie. |
imagedestroy | PHP 3.0 |
int imagedestroy(int im) |
|
Löscht ein Bild. |
imageellipse | PHP 4.0.6 |
void imageellipse(resource im, int cx, int cy, int w, int h, int color) |
|
Zeichnet eine Ellipse. |
imagefill | PHP 3.0 |
int imagefill(int im, int x, int y, int col) |
|
Füllt ein Bild mit der angegebenen Farbe. |
imagefilledarc | PHP 4.0.6 |
int imagefilledarc(int im, int cx, int cy, int w, int h, int s, int e, int col, int style) |
|
Zeichnet eine Teilellipse mit Füllung. |
imagefilledellipse | PHP 4.0.6 |
void imagefilledellipse(resource im, int cx, int cy, int w, int h, int color) |
|
Zeichnet eine Ellipse. |
imagefilledpolygon | PHP 3.0 |
int imagefilledpolygon(int im, array point, int num_points, int col) |
|
Zeichnet ein Polygon mit Füllung. |
imagefilledrectangle | PHP 3.0 |
int imagefilledrectangle(int im, int x1, int y1, int x2, int y2, int col) |
|
Zeichnet ein Rechteck mit Füllung. |
imagefilltoborder | PHP 3.0 |
int imagefilltoborder(int im, int x, int y, int border, int col) |
|
Füllt einen bestimmten Bereich mit der angegebenen Farbe. |
imagefontheight | PHP 3.0 |
int imagefontheight(int font) |
|
Ermittelt die Höhe der Schriftart. |
imagefontwidth | PHP 3.0 |
int imagefontwidth(int font) |
|
Ermittelt die Breite der Schriftart. |
imageftbbox | PHP 4.1.0 |
array imageftbbox(int size, int angle, string font_file, string text[, array extrainfo]) |
|
Gibt das Begrenzungsrechteck eines Texts zurück, der FreeType 2 für Schriftarten verwendet. |
imagefttext | PHP 4.1.0 |
array imagettftext(int im, int size, int angle, int x, int y, int col, string font_file, string text) |
|
Schreibt Text in das Bild; dabei wird eine TrueType-Schriftart verwendet. |
imagegammacorrect | PHP 3.0.13 |
int imagegammacorrect(int im, float inputgamma, float outputgamma) |
|
Führt eine Gammakorrektur in einem GD-Bild durch. |
imagegd2 | PHP 4.1.0 |
int imagegd2(int im[, string filename]) |
|
Zeigt ein GD2-Bild im Browser an bzw. stellt es in eine Datei. |
imagegd | PHP 4.1.0 |
int imagegd(int im[, string filename]) |
|
Zeigt ein GD-Bild im Browser an bzw. stellt es in eine Datei. |
imagegif | PHP 3.0 |
int imagegif(int im[, string filename]) |
|
Zeigt ein GIF-Bild im Browser an bzw. stellt es in eine Datei. |
imageinterlace | PHP 3.0 |
int imageinterlace(int im[, int interlace]) |
|
Aktiviert/deaktiviert das Interlacing. |
imagejpeg | PHP 3.0.16 |
int imagejpeg(int im[, string filename[, int quality]]) |
|
Zeigt ein JPEG-Bild im Browser an bzw. stellt es in eine Datei. |
imageline | PHP 3.0 |
int imageline(int im, int x1, int y1, int x2, int y2, int col) |
|
Zeichnet eine Linie. |
imageloadfont | PHP 3.0 |
int imageloadfont(string filename) |
|
Lädt eine neue Schriftart. |
imagepalettecopy | PHP 4.0.1 |
int imagepalettecopy(int dst, int src) |
|
Kopiert die Palette vom Ausgangsbild (src) in das Zielbild (dst). |
imagepng | PHP 3.0.13 |
int imagepng(int im[, string filename]) |
|
Zeigt ein PNG-Bild im Browser an bzw. stellt es in eine Datei. |
imagepolygon | PHP 3.0 |
int imagepolygon(int im, array point, int num_points, int col) |
|
Zeichnet ein Polygon. |
imagepsbbox | PHP 3.0.9 |
array imagepsbbox(string text, int font, int size[, int space, int tightness, int angle]) |
|
Gibt das von einem String beim Rastern benötigte Begrenzungsrechteck zurück. |
imagepscopyfont | PHP 3.0.9 |
int imagepscopyfont(int font_index) |
|
Erstellt eine Kopie einer Schriftart für weitere Veränderungen. |
imagepsencodefont | PHP 3.0.9 |
bool imagepsencodefont(int font_index, string filename) |
|
Ändern den Zeichenkodierungsvektor einer Schriftart. |
imagepsextendfont | PHP 3.0.9 |
bool imagepsextendfont(int font_index, float extend) |
|
Dehnt bzw. komprimiert (wenn extend kleiner als 1 ist) eine Schriftart. |
imagepsfreefont | PHP 3.0.9 |
bool imagepsfreefont(int font_index) |
|
Gibt den von einer Schriftart belegten Speicherplatz frei. |
imagepsloadfont | PHP 3.0.9 |
int imagepsloadfont(string pathname) |
|
Lädt eine neue Schriftart aus der angegebenen Datei. |
imagepsslantfont | PHP 3.0.9 |
bool imagepsslantfont(int font_index, float slant) |
|
Setzt eine Schriftart schräg. |
imagepstext | PHP 3.0.9 |
array imagepstext(int image, string text, int font, int size, int xcoord, int ycoord[, int space, int tightness, float angle, int antialias]) |
|
Rastert eine Schriftart über einem Bild. |
imagerectangle | PHP 3.0 |
int imagerectangle(int im, int x1, int y1, int x2, int y2, int col) |
|
Zeichnet ein Rechteck. |
imagesetbrush | PHP 4.0.6 |
int imagesetbrush(resource image, resource brush) |
|
Legt das Pinselbild für das Zeichnen von Linien fest. |
imagesetpixel | PHP 3.0 |
int imagesetpixel(int im, int x, int y, int col) |
|
Legt einen einzelnen Pixel fest. |
imagesetstyle | PHP 4.0.6 |
void imagesetstyle(resource im, array styles) |
|
Legt den Stil für das Zeichnen von Linien fest. |
imagesetthickness | PHP 4.0.6 |
void imagesetthickness(resource im, int thickness) |
|
Legt die Linienstärke für das Zeichnen von Linien fest. |
imagesettile | PHP 4.0.6 |
int imagesettile(resource image, resource tile) |
|
Legt das Kachelbild für Füllungen fest. |
imagestring | PHP 3.0 |
int imagestring(int im, int font, int x, int y, string str, int col) |
|
Zeichnet einen String horizontal. |
imagestringup | PHP 3.0 |
int imagestringup(int im, int font, int x, int y, string str, int col) |
|
Zeichnet einen String vertikal (um 90 Grad gegen den Uhrzeigersinn gedreht). |
imagesx | PHP 3.0 |
int imagesx(int im) |
|
Ermittelt die Bildbreite. |
imagesy | PHP 3.0 |
int imagesy(int im) |
|
Ermittelt die Bildhöhe. |
imagetruecolortopalette | PHP 4.0.6 |
void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted) |
|
Wandelt ein True-Color-Bild in ein palettenbasiertes Bild mit der angegebenen Anzahl von Farben um (bei Bedarf mit Dithering). |
imagettfbbox | PHP 3.0.1 |
array imagettfbbox(int size, int angle, string font_file, string text) |
|
Gibt das Begrenzungsrechteck von Text zurück, der TrueType-Schriftarten verwendet. |
imagettftext | PHP 3.0 |
array imagettftext(int im, int size, int angle, int x, int y, int col, string font_file, string text) |
|
Schreibt Text in das Bild; dabei wird eine TrueType-Schriftart verwendet. |
imagetypes | PHP 3 CVS Only |
int imagetypes(void) |
|
Gibt die in einem Bitfeld unterstützten Bildtypen zurück (1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM). |
imagewbmp | PHP 3.0.15 |
int imagewbmp(int im[, string filename,[, int foreground]]) |
|
Zeigt ein WBMP-Bild im Browser an bzw. stellt es in eine Datei. |
iptcembed | PHP 3.0.7 |
array iptcembed(string iptcdata, string jpeg_file_name[, int spool]) |
|
Bettet binäre IPTC-Daten in ein JPEG-Bild ein. |
iptcparse | PHP 3.0.6 |
array iptcparse(string iptcdata) |
|
Parst binäre IPTC-Daten in ein assoziatives Array. |
jpeg2wbmp | PHP 4.0.5 |
void jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold) |
|
Konvertiert ein JPEG-Bild in ein WBMP-Bild. |
png2wbmp | PHP 4.0.5 |
void png2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold) |
|
Konvertiert ein PNG-Bild in ein WBMP-Bild. |