Answer the question
In order to leave comments, you need to log in
Plugin to generate PDF from JavaScript?
Advise a plugin with which I can generate a printable presentation from js to pdf, in a vector and not just convert a picture from a canvas?
I need to generate a presentation in pdf, now I've settled on pdfmake, but it doesn't have enough functionality: I can't rotate pictures or text, only the elements in the vector allocated by api.
There is also jspdf, which seems to be normal, but does not support utf8.
Answer the question
In order to leave comments, you need to log in
This is an abbreviated entry:
$entry['title'] = '';
$entry['body'] = '';
$entry['tags'] = '';
title is equal to body, which is equal to tags, which in turn is equal to the empty string. This is how it reads roughly.
This is a transitive assignment, when, according to the precedence of operators, you will be chain-assigned.
This is sometimes used, for example, like this:
// Код можно сделать ещё короче, но я написал так для наглядности
if (null === ($product = $productRepository->find($id))) {
throw new NotFoundException();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question