質問編集履歴
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -70,7 +70,7 @@
|
|
70
70
|
|
71
71
|
```html
|
72
72
|
|
73
|
-
<form enctype="multipart/form-data" action="./???.php"
|
73
|
+
<form enctype="multipart/form-data" action="./???.php">
|
74
74
|
|
75
75
|
<div class="file-up">
|
76
76
|
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,9 @@
|
|
44
44
|
|
45
45
|
```
|
46
46
|
|
47
|
-
やはり、これが原因なのでしょうか?
|
47
|
+
やはり、これが原因なのでしょうか?
|
48
|
+
|
49
|
+
```
|
48
50
|
|
49
51
|
$data = $_POST['image'];
|
50
52
|
|
@@ -59,3 +61,83 @@
|
|
59
61
|
|
60
62
|
|
61
63
|
(睡魔と闘いながらの投稿なので、何か説明で抜けていたらすみません。)
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
追記
|
68
|
+
|
69
|
+
送信フォーム
|
70
|
+
|
71
|
+
```html
|
72
|
+
|
73
|
+
<form enctype="multipart/form-data" action="./???.php" method="POST">
|
74
|
+
|
75
|
+
<div class="file-up">
|
76
|
+
|
77
|
+
<label>
|
78
|
+
|
79
|
+
<input type="hidden" id="profileimage" name="MAX_FILE_SIZE" value="1048576" />
|
80
|
+
|
81
|
+
<input id="myfile" type="file" name="img" accept="image/*" class="file" />
|
82
|
+
|
83
|
+
<img id="upload-image" class="img" style="width:300px;height:300px;background-color:gray;border-radius:50%;" />
|
84
|
+
|
85
|
+
<label>
|
86
|
+
|
87
|
+
</div>
|
88
|
+
|
89
|
+
<div class="submit">
|
90
|
+
|
91
|
+
<input type="submit" value="upload" class="btn" />
|
92
|
+
|
93
|
+
</div>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<script>
|
98
|
+
|
99
|
+
$('.btn').on('click', function (ev) {
|
100
|
+
|
101
|
+
$uploadCrop.croppie('result', {
|
102
|
+
|
103
|
+
type: 'canvas',
|
104
|
+
|
105
|
+
size: 'viewport'
|
106
|
+
|
107
|
+
}).then(function (resp) {
|
108
|
+
|
109
|
+
$.ajax({
|
110
|
+
|
111
|
+
url: "./???.php",
|
112
|
+
|
113
|
+
type: "POST",
|
114
|
+
|
115
|
+
data: {"image":resp},
|
116
|
+
|
117
|
+
success: function (data) {
|
118
|
+
|
119
|
+
var response = data.split(",");
|
120
|
+
|
121
|
+
var html;
|
122
|
+
|
123
|
+
if(response[0] != "Error"){
|
124
|
+
|
125
|
+
html = '<img id="cropresult" style="margin: 0px;" src="' + response[1].trim() + '" />';
|
126
|
+
|
127
|
+
$("#uploaded-input").html(html);
|
128
|
+
|
129
|
+
} else {
|
130
|
+
|
131
|
+
console.log(data);
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
}
|
136
|
+
|
137
|
+
});
|
138
|
+
|
139
|
+
});
|
140
|
+
|
141
|
+
});
|
142
|
+
|
143
|
+
```
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -55,3 +55,7 @@
|
|
55
55
|
確かにURLを見ると何故か長くなっております。しかし原因と対処方法が分かりません。
|
56
56
|
|
57
57
|
わかる方がいらしたら、教えていただけると幸いです。
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
(睡魔と闘いながらの投稿なので、何か説明で抜けていたらすみません。)
|