希望这不会被标记为重复,因为没有其他q / as SO帮助我解决这个问题,我想我需要一个更具体的帮助。
我的网站上有一个个人资料页面,允许用户在没有页面重新加载的情况下更改他们的个人资料图片(通过AJAX / jQuery)。
一切正常。用户打开“更改配置文件图片”模式,选择要上载的文件并按“裁剪此图像”。按下此按钮时,它会使用典型的发送文件和formData(我将文件数据附加到)的方式将文件上传到网站。
它使用以下jQuery发送后端:
// Upload the image for cropping (Crop this Image!)
$("#image-upload").click(function(){
// File data
var fileData = $("#image-select").prop("files")[0];
// Set up a form
var formData = new FormData();
// Append the file to the new form for submission
formData.append("file", fileData);
// Send the file to be uploaded
$.ajax({
// Set the params
cache: false,
contentType: false,
processData: false,
// Page & file information
url: "index.php?action=uploadimage",
dataType: "text",
type: "POST",
// The data to send
data: formData,
// On success...
success: function(data){
// If no image was returned
// "not-image" is returned from the PHP script if we return it in case of an error
if(data == "not-image"){
alert("That's not an image, please upload an image file.");
return false;
}
// Else, load the image on to the page so we don't need to reload
$(profileImage).attr("src", data);
// If the API is already set, then we should apply a new image
if(jCropAPI){
jCropAPI.setImage(data + "?" + new Date().getTime());
}
// Initialise jCrop
setJCrop();
//$("#image-profile").show();
$("#send-coords").show();
}
})
});
setJcrop执行以下操作
function setJCrop(){
// Get width / height of the image
var width = profileImage.width();
var height = profileImage.height();
// Var containing the source image
var imgSource = profileImage.attr("src");
// New image object to work on
var image = new Image();
image.src = imgSource;
// The SOURCE (ORIGINAL) width / height
var origWidth = image.width;
var origHeight = image.height;
// Set up the option to jCrop it
$(profileImage).Jcrop({
onSelect: setCoords,
onChange: setCoords,
setSelect: [0, 0, 51, 51],
aspectRatio: 1, // This locks it to a square image, so it fits the site better
boxWidth: width,
boxHeight: height, // Fixes the size permanently so that we can load new images
}, function(){jCropAPI = this});
setOthers(width, height, origWidth, origHeight);
}
一旦后端,它会执行以下操作:
public function uploadImage($file){
// See if there is already an error
if(0 < $file["file"]["error"]){
return $file["file"]["error"] . " (error)";
}else{
// Set up the image
$image = $file["file"];
$imageSizes = getimagesize($image["tmp_name"]);
// If there are no image sizes, return the not-image error
if(!$imageSizes){
return "not-image";
}
// SIZE LIMIT HERE SOON (TBI)
// Set a name for the image
$username = $_SESSION["user"]->getUsername();
$fileName = "images/profile/$username-profile-original.jpg";
// Move the image which is guaranteed a unique name (unless it is due to overwrite), to the profile pictures folder
move_uploaded_file($image["tmp_name"], $fileName);
// Return the new filename
return $fileName;
}
}
然后,用户使用选择器选择图像上的区域,然后按“更改个人资料图片”,执行以下操作
// Send the Coords and upload the new image
$("#send-coords").click(function(){
$.ajax({
type: "POST",
url: "index.php?action=uploadprofilepicture",
data: {
coordString: $("#coords").text() + $("#coords2").text(),
imgSrc: $("#image-profile").attr("src")
},
success: function(data){
if(data == "no-word"){
alert("Can not work with this image type, please try with another image");
}else{
// Append a date to make sure it reloads the image without using a cached version
var dateNow = new Date();
var newImageLink = data + "?" + dateNow.getTime();
$("#profile-picture").attr("src", newImageLink);
// Hide the modal
$("#profile-picture-modal").modal("hide");
}
}
});
})
后端是:
public function uploadProfilePicture($coordString, $imgSrc){
// Target dimensions
$tarWidth = $tarHeight = 150;
// Split the coords in to an array (sent by a string that was created by JS)
$coordsArray = explode(",", $coordString);
//Set them all from the array
$x = $coordsArray[0];
$y = $coordsArray[1];
$width = $coordsArray[2];
$height = $coordsArray[3];
$newWidth = $coordsArray[4];
$newHeight = $coordsArray[5];
$origWidth = $coordsArray[6];
$origHeight = $coordsArray[7];
// Validate the image and decide which image type to create the original resource from
$imgDetails = getimagesize($imgSrc);
$imgMime = $imgDetails["mime"];
switch($imgMime){
case "image/jpeg":
$originalImage = imagecreatefromjpeg($imgSrc);
break;
case "image/png":
$originalImage = imagecreatefrompng($imgSrc);
break;
default:
return "no-work";
}
// Target image resource
$imgTarget = imagecreatetruecolor($tarWidth, $tarHeight);
$img = imagecreatetruecolor($newWidth, $newHeight);
// Resize the original image to work with our coords
imagecopyresampled($img, $originalImage, 0, 0, 0, 0,
$newWidth, $newHeight, $origWidth, $origHeight);
// Now copy the CROPPED image in to the TARGET resource
imagecopyresampled(
$imgTarget, // Target resource
$img, // Target image
0, 0, // X / Y Coords of the target image; this will always be 0, 0 as we do not want any black nothingness
$x, $y, // X / Y Coords (top left) of the target area
$tarWidth,
$tarHeight, // width / height of the target
$width,
$height // Width / height of the source image crop
);
$username = $_SESSION["user"]->getUsername();
$newPath = "images/profile/$username-profile-cropped.jpg";
// Create that shit!
imagejpeg($imgTarget, $newPath);
// Return the path
return $newPath;
}
所以基本上这会返回新文件的路径,该路径会更改为用户的个人资料图片(每次都是同名),并在?
之后附加时间后实时上传以正确刷新图像(无缓存) )。
这一切都运行正常,但是如果用户选择另一张图片进行上传,则在上传一张图片之后,coords会全部搞砸(例如它们从50到250)并最终裁剪出完全不同的图像部分,大部分都是黑色的。
对于这个问题中的大量代码真的很抱歉,但我很感激以前可能解决这个问题的人提供的任何帮助。
有些代码可能看起来不合适,但这只是我试图调试它。
谢谢,再次,抱歉这个问题的大小。
- 编辑 -
我的setCoords()
和setOthers()
函数看起来像这样:
//Set the coords with this method, that is called every time the user makes / changes a selection on the crop panel
function setCoords(c){
$("#coords").text(c.x + "," + c.y + "," + c.w + "," + c.h + ",");
}
//This one adds the other parts to the second div; they will be concatenated in to the POST string
function setOthers(width, height, origWidth, origHeight){
$("#coords2").text(width + "," + height + "," + origWidth + "," + origHeight);
}
答案 0 :(得分:1)
我现在已经解决了这个问题。
对我来说,问题是当使用setJCrop()时; - 它没有重新加载图像。原因是上传然后加载到JCrop窗口的图像每次都有相同的名称(用户名作为前缀,然后是profile-cropped.jpg)。
所以为了尝试解决这个问题,我使用了setImage方法来加载一个完整大小的图像。
我通过设置boxWidth / boxHeight params解决了这个问题,但是每当我加载新图像时,他们就会发现坐标错误。
事实证明,每次都是从缓存加载图像,即使我在jQuery中使用new Image();
。
为了解决这个问题,我现在使用了destroy();在jCropAPI上然后每次重新初始化它,没有使用setImage();
我在CSS上为图像本身设置了一个最大宽度,这阻止了它被锁定到特定的宽度。
下一个问题是,每当我第二次加载图像时,它会将旧图像的宽度/高度留在那里,这使得图像看起来都是偏斜的。
为了解决这个问题,我重置了宽度和宽度。在重新设置新上传图片的图片来源之前,我使用jCrop的图片的高度为""
$(profileImage).css("width", ""); $(profileImage).css("height", "");
。
但是我仍然在图像上使用相同的名称,然后每次都从缓存加载它。
我的解决方案是添加一个&#34; avatar&#34;数据库中的列,每次都在数据库中保存图像名称。该图像被命名为$username-$time.jpg
和$username-$time.jpg-cropped.jpg
,其中$ username是用户的用户名(derp),$ time中的$ time只是time();
。
这意味着每次上传图片时,都会有一个新名称,所以当对此图片进行任何调用时,都没有缓存。
像imageName + ".jpg?" + new Date.getTime();
这样的追加工作适用于某些事情,但是当发送图像名称后端时,它没有正常工作,并决定何时追加它/不附加它是一个痛苦,然后一件事要求它被附加以强制重新加载,但是当附加它时它没有正常工作,所以我不得不重新工作。
所以关键:(TL; DR)
如果要加载新图像,请不要使用与jCrop相同的图像名称;上传具有不同名称的图像,然后参考该图像。缓存问题很痛苦,如果不是每次都使用新名称,你就无法正确解决它们,因为这样可以确保绝对没有问题(只要名称始终是唯一的)。 / p>
然后,当你初始化jCrop时,如果有的话,事先销毁前一个。在图片上使用max-width
代替width
可以阻止其锁定宽度,如果您要将新图片加载到同一个图片中,请重新设置图片的宽度/高度{ {1}}或<img>
希望这有助于某人!
答案 1 :(得分:0)
我使用了jcrop,我认为这发生在我身上。当有新图像时,您必须“重置”jcrop。尝试这样的事情:
function resetJCrop()
{
if (jCropAPI) {
jCropAPI.disable();
jCropAPI.release();
jCropAPI.destroy();
}
}
$("#image-upload").click(function(){
success: function(data){
...
resetJCrop(); // RESETTING HERE
// If the API is already set, then we should apply a new image
if(jCropAPI){
jCropAPI.setImage(data + "?" + new Date().getTime());
}
// Initialise jCrop
setJCrop();
...
}
});
我不记得有关为什么我必须在我的特定情况下使用disable()AND release()AND destroy()的细节。可能你只能使用其中一个。试试吧,看看它是否适合你!