Hallo SelfHtml-Forum,
in einer PHP-Anwendung erzeuge ich Barcodes - mit der Pear-Klasse kein Problem, das Bild wird korrekt zum Browser gesendet.
Wie muss ich es aber anstellen wenn ich das Bild abfangen moechte um es in eine Datei zu schreiben?
if (isset($_POST['num']) && isset($_POST['imgtype']))
{
$filename = "img/barcode/".$_POST['num'].".".$_POST['imgtype'];
$fp = fopen($filename, "w+");
require_once("Image/Barcode.php");
$type = "ean13";
$content = Image_Barcode::draw($num, $type, $imgtype);
if (fwrite($fp, $content) === FALSE)
{
echo "Konnte Barcode nicht speichern ($filename)";
}
}
in der Datei, die dabei erzeugt wird steht dann 'Object' - kein Bild von einem Barcode also