Image generation
I need to generate for each record image (combined from some images). I do it with canvas.
html2canvas($("#target"), {
onrendered: function(canvas) {
var imgsrc = canvas.toDataURL("image/png");
$("#img-data").val(canvas.toDataURL("image/png"));
var extra_canvas = document.createElement("canvas");
extra_canvas.setAttribute("width",240);
extra_canvas.setAttribute("height",400);
var ctx = extra_canvas.getContext("2d");
ctx.drawImage(canvas,0,0,canvas.width,
canvas.height,0,0,240,400);
var dataURL = extra_canvas.toDataURL();
Something like this.
So in my action I can get content
$content = $this->renderPartial('renderingstest', ['model' => MyData::findOne($myData['data_id'])]);
but I will get the correct record after some time, so it's impossible to get data with using DOMDocument, or generating some html file for converting an image.
I need to find some way for getting generated image src...
Image generated by this code
<?php for ( $i = 1; $i <= 6; $i++ ) {
if ( $i == 1 ) { ?>
<div class="panel">
<?php } ?>
<div class="dd1<?= $i; ?> <?php echo $previewPanelSize ?>">
<?php
if (($model->{'tem_p' . $i . '_type'} == '2') and ($model->{'tem_p' . $i . '_content'} > 1500027946)) { // condition for projects that need the refnumber to display image, remove in case this changes
$im = Images::findOne(['ima_refnum' => $model->{'tem_p' . $i . '_content'}]);
if ($im) {
print '<center id="' . $im->ima_refnum . '">' . Html::img('data:' . $im->ima_type . ';base64,' . $im->ima_image, ) . '</center>';
}
} else {
print '<center>' . $model->{'tem_p' . $i . '_content'} . '</center>';
}
?>
</div>
<?php if ($i == 3 ) { ?>
</div>
<div class="panel">
<?php } ?>
<?php if ($i == 6 ) { ?>
</div>
<?php } ?>
<?php } ?>
Any good idea?
php jquery yii2 render image-generation
add a comment |
I need to generate for each record image (combined from some images). I do it with canvas.
html2canvas($("#target"), {
onrendered: function(canvas) {
var imgsrc = canvas.toDataURL("image/png");
$("#img-data").val(canvas.toDataURL("image/png"));
var extra_canvas = document.createElement("canvas");
extra_canvas.setAttribute("width",240);
extra_canvas.setAttribute("height",400);
var ctx = extra_canvas.getContext("2d");
ctx.drawImage(canvas,0,0,canvas.width,
canvas.height,0,0,240,400);
var dataURL = extra_canvas.toDataURL();
Something like this.
So in my action I can get content
$content = $this->renderPartial('renderingstest', ['model' => MyData::findOne($myData['data_id'])]);
but I will get the correct record after some time, so it's impossible to get data with using DOMDocument, or generating some html file for converting an image.
I need to find some way for getting generated image src...
Image generated by this code
<?php for ( $i = 1; $i <= 6; $i++ ) {
if ( $i == 1 ) { ?>
<div class="panel">
<?php } ?>
<div class="dd1<?= $i; ?> <?php echo $previewPanelSize ?>">
<?php
if (($model->{'tem_p' . $i . '_type'} == '2') and ($model->{'tem_p' . $i . '_content'} > 1500027946)) { // condition for projects that need the refnumber to display image, remove in case this changes
$im = Images::findOne(['ima_refnum' => $model->{'tem_p' . $i . '_content'}]);
if ($im) {
print '<center id="' . $im->ima_refnum . '">' . Html::img('data:' . $im->ima_type . ';base64,' . $im->ima_image, ) . '</center>';
}
} else {
print '<center>' . $model->{'tem_p' . $i . '_content'} . '</center>';
}
?>
</div>
<?php if ($i == 3 ) { ?>
</div>
<div class="panel">
<?php } ?>
<?php if ($i == 6 ) { ?>
</div>
<?php } ?>
<?php } ?>
Any good idea?
php jquery yii2 render image-generation
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50
add a comment |
I need to generate for each record image (combined from some images). I do it with canvas.
html2canvas($("#target"), {
onrendered: function(canvas) {
var imgsrc = canvas.toDataURL("image/png");
$("#img-data").val(canvas.toDataURL("image/png"));
var extra_canvas = document.createElement("canvas");
extra_canvas.setAttribute("width",240);
extra_canvas.setAttribute("height",400);
var ctx = extra_canvas.getContext("2d");
ctx.drawImage(canvas,0,0,canvas.width,
canvas.height,0,0,240,400);
var dataURL = extra_canvas.toDataURL();
Something like this.
So in my action I can get content
$content = $this->renderPartial('renderingstest', ['model' => MyData::findOne($myData['data_id'])]);
but I will get the correct record after some time, so it's impossible to get data with using DOMDocument, or generating some html file for converting an image.
I need to find some way for getting generated image src...
Image generated by this code
<?php for ( $i = 1; $i <= 6; $i++ ) {
if ( $i == 1 ) { ?>
<div class="panel">
<?php } ?>
<div class="dd1<?= $i; ?> <?php echo $previewPanelSize ?>">
<?php
if (($model->{'tem_p' . $i . '_type'} == '2') and ($model->{'tem_p' . $i . '_content'} > 1500027946)) { // condition for projects that need the refnumber to display image, remove in case this changes
$im = Images::findOne(['ima_refnum' => $model->{'tem_p' . $i . '_content'}]);
if ($im) {
print '<center id="' . $im->ima_refnum . '">' . Html::img('data:' . $im->ima_type . ';base64,' . $im->ima_image, ) . '</center>';
}
} else {
print '<center>' . $model->{'tem_p' . $i . '_content'} . '</center>';
}
?>
</div>
<?php if ($i == 3 ) { ?>
</div>
<div class="panel">
<?php } ?>
<?php if ($i == 6 ) { ?>
</div>
<?php } ?>
<?php } ?>
Any good idea?
php jquery yii2 render image-generation
I need to generate for each record image (combined from some images). I do it with canvas.
html2canvas($("#target"), {
onrendered: function(canvas) {
var imgsrc = canvas.toDataURL("image/png");
$("#img-data").val(canvas.toDataURL("image/png"));
var extra_canvas = document.createElement("canvas");
extra_canvas.setAttribute("width",240);
extra_canvas.setAttribute("height",400);
var ctx = extra_canvas.getContext("2d");
ctx.drawImage(canvas,0,0,canvas.width,
canvas.height,0,0,240,400);
var dataURL = extra_canvas.toDataURL();
Something like this.
So in my action I can get content
$content = $this->renderPartial('renderingstest', ['model' => MyData::findOne($myData['data_id'])]);
but I will get the correct record after some time, so it's impossible to get data with using DOMDocument, or generating some html file for converting an image.
I need to find some way for getting generated image src...
Image generated by this code
<?php for ( $i = 1; $i <= 6; $i++ ) {
if ( $i == 1 ) { ?>
<div class="panel">
<?php } ?>
<div class="dd1<?= $i; ?> <?php echo $previewPanelSize ?>">
<?php
if (($model->{'tem_p' . $i . '_type'} == '2') and ($model->{'tem_p' . $i . '_content'} > 1500027946)) { // condition for projects that need the refnumber to display image, remove in case this changes
$im = Images::findOne(['ima_refnum' => $model->{'tem_p' . $i . '_content'}]);
if ($im) {
print '<center id="' . $im->ima_refnum . '">' . Html::img('data:' . $im->ima_type . ';base64,' . $im->ima_image, ) . '</center>';
}
} else {
print '<center>' . $model->{'tem_p' . $i . '_content'} . '</center>';
}
?>
</div>
<?php if ($i == 3 ) { ?>
</div>
<div class="panel">
<?php } ?>
<?php if ($i == 6 ) { ?>
</div>
<?php } ?>
<?php } ?>
Any good idea?
php jquery yii2 render image-generation
php jquery yii2 render image-generation
edited Nov 16 '18 at 21:49
Lola_Padilya
asked Nov 16 '18 at 21:24
Lola_PadilyaLola_Padilya
326
326
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50
add a comment |
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345595%2fimage-generation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345595%2fimage-generation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I use PHP GD to generate images
– MadeInDreams
Nov 16 '18 at 21:41
I cann't use imagecopymerge because I'm not sure about coordinates where the next image will be located
– Lola_Padilya
Nov 16 '18 at 21:50