图片上传不显示图片(Guillotine Crop)
Image upload not showing image (Guillotine Crop)
我有一个简单的图片上传,它进入 index.php:
页上的 iframe
<form ...action="up.php">
<input type="file" value="" name="file" id="file">
<iframe style="" id="upload_target" name="upload_target"</iframe>
</form>
图片上传 up.php 使用 PHP:
<?php
...
move_uploaded_file($tmp_name, "$path");
...
list($test_width, $test_height) = getimagesize($path);
?>
现在我想在 iframe
中显示图像并允许使用 guillotine
进行裁剪(仍然是 up.php):
<?php
if($test_width>0) {
?>
<div id="theparent" style="width: 100%;border:0px solid #000;">
<img id='tempImage2' src='<?php echo $path;?>'>
</div>
在此之前它是有效的,但 guillotine
现在做了一些导致图像不显示的事情。下一部分来自Guillotine Crop:
<div id='controls'>
<button id='zoom_out' type='button' title='Zoom out'> - </button>
<button id='fit' type='button' title='Fit image'> [ ] </button>
<button id='zoom_in' type='button' title='Zoom in'> + </button>
</div>
<div style="display:none">
<ul id='data'>
<div class='column'>
<span id='x'></span>
</div>
<div class='column'>
<li>width: <span id='w'></span>
<li>height: <span id='h'></span>
</div>
<div class='column'>
<li>scale: <span id='scale'></span>
<li>angle: <span id='angle'></span>
</div>
</ul>
</div>
</div>
<script src='http://code.jquery.com/jquery-1.11.2.min.js'></script>
<script src='../../jCrop/js/jquery.guillotine.js'></script>
<script type='text/javascript'>
jQuery(function() {
var picture = $('#tempImage2');
picture.on('load', function(){
// Initialize plugin (with custom event)
picture.guillotine({eventOnChange: 'guillotinechange'});
// Display inital data
var data = picture.guillotine('getData');
for(var key in data) { $('#'+key).html(data[key]); }
// Bind button actions
$('#rotate_left').click(function(){ picture.guillotine('rotateLeft'); });
$('#rotate_right').click(function(){ picture.guillotine('rotateRight'); });
$('#fit').click(function(){ picture.guillotine('fit'); });
$('#zoom_in').click(function(){ picture.guillotine('zoomIn'); });
$('#zoom_out').click(function(){ picture.guillotine('zoomOut'); });
// Update data on change
picture.on('guillotinechange', function(ev, data, action) {
data.scale = parseFloat(data.scale.toFixed(4));
for(var k in data) { $('#'+k).html(data[k]); }
});
});
});
var otherPicture = $('#tempImage2');
otherPicture.guillotine({eventOnChange: 'guillotinechange'});
otherPicture.on('guillotinechange', function(ev, data, action){
});
</script>
<?php
}
?>
当我重新加载 iframe
时,显示图像。这让我相信图像在想要显示时没有加载?但我认为 PHP 首先加载,当文件存在时加载 JavaScript ($test_width>0
).
您的代码有些奇怪,您正在为同一张图片实例化插件两次。 picture
和 otherPicture
实际上是相同的 DOM 元素。这肯定是问题的根源之一。
除此之外,第一个实例的代码似乎是正确的,正确地包装在图片的 onload
事件的回调中。请注意,如果图像在绑定到 onload
事件(例如缓存图像)之前完成加载,则不会执行回调。
此外,为了避免 iframe 的复杂化,您可能需要使用 Bifrost 之类的东西。它扩展了 jQuery 的 ajax
以在不支持 HTML5 功能且没有 Flash 的情况下异步上传文件。
在后台它创建并为你处理一个iframe,所以本质上它是一样的,但这样你可以保持主框架中的 Guillotine,而不是 iframe 中的 Guillotine。
希望对您有所帮助。
我有一个简单的图片上传,它进入 index.php:
页上的iframe
<form ...action="up.php">
<input type="file" value="" name="file" id="file">
<iframe style="" id="upload_target" name="upload_target"</iframe>
</form>
图片上传 up.php 使用 PHP:
<?php
...
move_uploaded_file($tmp_name, "$path");
...
list($test_width, $test_height) = getimagesize($path);
?>
现在我想在 iframe
中显示图像并允许使用 guillotine
进行裁剪(仍然是 up.php):
<?php
if($test_width>0) {
?>
<div id="theparent" style="width: 100%;border:0px solid #000;">
<img id='tempImage2' src='<?php echo $path;?>'>
</div>
在此之前它是有效的,但 guillotine
现在做了一些导致图像不显示的事情。下一部分来自Guillotine Crop:
<div id='controls'>
<button id='zoom_out' type='button' title='Zoom out'> - </button>
<button id='fit' type='button' title='Fit image'> [ ] </button>
<button id='zoom_in' type='button' title='Zoom in'> + </button>
</div>
<div style="display:none">
<ul id='data'>
<div class='column'>
<span id='x'></span>
</div>
<div class='column'>
<li>width: <span id='w'></span>
<li>height: <span id='h'></span>
</div>
<div class='column'>
<li>scale: <span id='scale'></span>
<li>angle: <span id='angle'></span>
</div>
</ul>
</div>
</div>
<script src='http://code.jquery.com/jquery-1.11.2.min.js'></script>
<script src='../../jCrop/js/jquery.guillotine.js'></script>
<script type='text/javascript'>
jQuery(function() {
var picture = $('#tempImage2');
picture.on('load', function(){
// Initialize plugin (with custom event)
picture.guillotine({eventOnChange: 'guillotinechange'});
// Display inital data
var data = picture.guillotine('getData');
for(var key in data) { $('#'+key).html(data[key]); }
// Bind button actions
$('#rotate_left').click(function(){ picture.guillotine('rotateLeft'); });
$('#rotate_right').click(function(){ picture.guillotine('rotateRight'); });
$('#fit').click(function(){ picture.guillotine('fit'); });
$('#zoom_in').click(function(){ picture.guillotine('zoomIn'); });
$('#zoom_out').click(function(){ picture.guillotine('zoomOut'); });
// Update data on change
picture.on('guillotinechange', function(ev, data, action) {
data.scale = parseFloat(data.scale.toFixed(4));
for(var k in data) { $('#'+k).html(data[k]); }
});
});
});
var otherPicture = $('#tempImage2');
otherPicture.guillotine({eventOnChange: 'guillotinechange'});
otherPicture.on('guillotinechange', function(ev, data, action){
});
</script>
<?php
}
?>
当我重新加载 iframe
时,显示图像。这让我相信图像在想要显示时没有加载?但我认为 PHP 首先加载,当文件存在时加载 JavaScript ($test_width>0
).
您的代码有些奇怪,您正在为同一张图片实例化插件两次。 picture
和 otherPicture
实际上是相同的 DOM 元素。这肯定是问题的根源之一。
除此之外,第一个实例的代码似乎是正确的,正确地包装在图片的 onload
事件的回调中。请注意,如果图像在绑定到 onload
事件(例如缓存图像)之前完成加载,则不会执行回调。
此外,为了避免 iframe 的复杂化,您可能需要使用 Bifrost 之类的东西。它扩展了 jQuery 的 ajax
以在不支持 HTML5 功能且没有 Flash 的情况下异步上传文件。
在后台它创建并为你处理一个iframe,所以本质上它是一样的,但这样你可以保持主框架中的 Guillotine,而不是 iframe 中的 Guillotine。
希望对您有所帮助。