Welldy Rosman
Welldy Rosman

Reputation: 47

How To Write Image On Temp File Php

I want to create an invoice print, but on the invoice there is a logo, so how can I write the logo to a Tmp File and also set the paper Size/Margin/Position on the Tmp File?

I got this code from an article and it's working for print, but I don't understand how write is working?

$tmpdir = sys_get_temp_dir();
$file = tempnam($tmpdir, 'ctk');
$handle = fopen($file, 'w');

$condensed = Chr(27) . Chr(33) . Chr(4);
$bold1 = Chr(27) . Chr(69);
$bold0 = Chr(27) . Chr(70);
$initialized = chr(27).chr(64);
$condensed1 = chr(15);
$condensed0 = chr(18);
$Data = $initialized;
$Data .= $condensed1;
$Data .= "----------------------------\n";
$Data .= "         FAKTUR/KWITANSI         \n";
$Data .= "         CV. SINTESIS INDO PRATAMA         \n";
$Data .= "----------------------------\n";
$Data .= "Selamat datang,\n";
$Data .= "--------------------------\n";
fwrite($handle, $Data);
fclose($handle);
copy($file, "//localhost/Canon iR5570iR6570 PCL6"); # Lakukan cetak
unlink($file);

Upvotes: 0

Views: 219

Answers (1)

Welldy Rosman
Welldy Rosman

Reputation: 47

Finnaly I use PDF and print it with priview first

Upvotes: 0

Related Questions