You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this possible or how to do this thing, we are shifting from Google Print, since those people are just shutting down, I think Google better shutdown.
--- I had found how to do the options part,
The text was updated successfully, but these errors were encountered:
I had got this, But is there any way we can scale the print contents to DEFAULT. Since currently the documents are printed in Middle of the paper, We use a Thermal printer.
for everyone needing a solution on how to pass options:
only way to pass options here is to actually pass an object like this:
$printJob = new PrintJob();
[...]
$options = new \stdClass();
$options->duplex = 'one-sided'; // do no use duplex print, instead print only on one page
$options->fit_to_page = true; // fit print to size of page
$printJob->options = $options;
Hi,
We need to know what all values can be passed on this options tag in PHP
$printJob->options
Example.
$printJob->options = '{"copies":2,"papers":"200,1600"}';
Is this possible or how to do this thing, we are shifting from Google Print, since those people are just shutting down, I think Google better shutdown.
--- I had found how to do the options part,
The text was updated successfully, but these errors were encountered: