Swift image upload to PHP sends TMP file instead of Image - php

I have an App where I take a picture from the camera and it has to be send to a server (PHP), the problem is, that when I upload the picture, the server only receives a tmp file instead. How can I solve this? I thank your answers in advance. My code is the following:
Take Photo Button
#IBAction func tomarFoto(_ sender: Any) {
indicadorActividad.startAnimating()
let image = UIImagePickerController()
image.delegate = self
image.sourceType = UIImagePickerControllerSourceType.camera
image.allowsEditing = true
self.present(image, animated: true){
}
}
Change size of picture
#IBAction func tomarFoto(_ sender: Any) {
indicadorActividad.startAnimating()
let image = UIImagePickerController()
image.delegate = self
image.sourceType = UIImagePickerControllerSourceType.camera
image.allowsEditing = true
self.present(image, animated: true){
}
}
ImagePicker
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
imageView.image = resizedImage(image: image, newWidth: 300, newHeight: 300)
} else {
//Algo
}
//Detenemos el indicador y se cierra la ventana de la camara/galeria
self.indicadorActividad.stopAnimating()
self.dismiss(animated: true, completion: nil)
}
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
picker.dismiss(animated: true, completion: nil)
}
The following function takes the picture and Uploads it to the PHP server, I think the error might be here.
Upload to server
func subirFotoRequest(){
let url = URL(string: "http://192.168.0.155/BolsaTrabajo/imagen.php")
let request = NSMutableURLRequest(url: url!)
request.httpMethod = "POST"
let boundary = generateBoundaryString()
request.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type")
if (imageView.image == nil)
{
return
}
let image_data = UIImagePNGRepresentation(imageView.image!)
if(image_data == nil)
{
return
}
let body = NSMutableData()
indicadorActividad.startAnimating()
let fname = "test.png"
let mimetype = "image/png"
body.append("--\(boundary)\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Disposition:form-data; name=\"test\"\r\n\r\n".data(using: String.Encoding.utf8)!)
body.append("hi\r\n".data(using: String.Encoding.utf8)!)
body.append("--\(boundary)\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Disposition:form-data; name=\"file\"; filename=\"\(fname)\"\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Type: \(mimetype)\r\n\r\n".data(using: String.Encoding.utf8)!)
body.append(image_data!)
body.append("\r\n".data(using: String.Encoding.utf8)!)
body.append("--\(boundary)--\r\n".data(using: String.Encoding.utf8)!)
request.httpBody = body as Data
let session = URLSession.shared
let task = URLSession.shared.dataTask(with: request as URLRequest) { (
data, response, error) in
guard let _:Data = data, let _:URLResponse = response , error == nil else {
print("error")
return
}
let dataString = NSString(data: data!, encoding: String.Encoding.utf8.rawValue)
print(dataString)
//self.indicadorActividad.stopAnimating()
do {
DispatchQueue.main.async(execute: {
self.indicadorActividad.stopAnimating()
self.imageView.image = nil;
});
}
catch{
//Errores
}
}
task.resume()
}
func generateBoundaryString() -> String
{
return "Boundary-\(UUID().uuidString)"
}
And the final block of code is my PHP script.
PHP File [UPDATED]
PHP file now uploads the picture in the respective format, the only problem is, it overrides my previous picture. How can I prevent this from happen? I was thinking probably by setting a name that will change for every picture in my swift class. Code updated is the following Previous code is commented:
//$ruta = "Imagenes/";
//if($_FILES["file"]["name"] !== ""){
// mkdir($ruta, 0777, true);
// move_uploaded_file($_FILES["file"]["name"], $ruta.'/'.
//basename($_FILES["file"]["name"]));
// echo "subido";
//}
$fichero_subido = $dir_subida . basename($_FILES['file']['name']);
echo '<pre>';
if(move_uploaded_file($_FILES['file']['tmp_name'], $fichero_subido)){
echo "El fichero es válido y se subó con éxito \n";
}
else{
echo "Posible ataque de subida de ficheros\n";
}
echo 'Más información de depuración: ';
print_r($_FILES);

Related

How upload Image with Swift5 and PHP to Server?

I'm trying to upload image to a local server using swift5 and php , Xcode Version 12.5.1 , Can you help me debug the code, or give me an example ?
Image upload example with Swift and PHP
I downloaded this example and change but it doesn't work, only folders created work
The modifications in the code :
import UIKit
class ViewController: UIViewController, UIImagePickerControllerDelegate,UINavigationControllerDelegate {
#IBOutlet weak var myActivityIndicator: UIActivityIndicatorView!
#IBOutlet weak var myImageView: UIImageView!
#IBAction func uploadButtonTapped(_ sender: Any) {
myImageUploadRequest()
}
#IBAction func selectPhotoButtonTapped(_ sender: Any) {
let myPickerController = UIImagePickerController()
myPickerController.delegate = self;
myPickerController.sourceType = UIImagePickerController.SourceType.photoLibrary
self.present(myPickerController, animated: true, completion: nil)
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
myImageView.image = info[UIImagePickerController.InfoKey.originalImage] as? UIImage
myImageView.backgroundColor = UIColor.clear
self.dismiss(animated: true, completion: nil)
}
override func viewDidLoad() {
super.viewDidLoad()
}
func generateBoundaryString() -> String
{
return "Boundary-\(UUID().uuidString)"
}
func myImageUploadRequest()
{
let myUrl = NSURL(string: "http://localhost/~*******/PHP/App/scripts/imageUpload.php");
//let myUrl = NSURL(string: "http://www.boredwear.com/utils/postImage.php");
let request = NSMutableURLRequest(url:myUrl! as URL);
request.httpMethod = "POST";
let param = [
"firstName" : "Sergey",
"lastName" : "Kargopolov",
"userId" : "9"
]
let boundary = generateBoundaryString()
request.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type")
let imageData = myImageView.image!.jpegData(compressionQuality: 1)
if(imageData==nil) {
return;
}
print("imageData =\(imageData as Any)")
//request.HTTPBody = createBodyWithParameters(param, filePathKey: "file", imageDataKey: imageData!, boundary: boundary)
request.httpBody = createBodyWithParameters(parameters: param, filePathKey: "file", imageDataKey: imageData! as NSData, boundary: boundary) as Data
myActivityIndicator.startAnimating();
let task = URLSession.shared.dataTask(with: request as URLRequest) {
data, response, error in
if error != nil {
print("error=\(String(describing: error))")
return
}
// You can print out response object
print("******* response = \(String(describing: response))")
// Print out reponse body
let responseString = NSString(data: data!, encoding: String.Encoding.utf8.rawValue)
print("****** response data = \(responseString!)")
do {
let json = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary
print(json as Any)
DispatchQueue.main.async {
self.myActivityIndicator.stopAnimating()
self.myImageView.image = nil;
}
}catch
{
print(error)
}
}
task.resume()
}
func createBodyWithParameters(parameters: [String: String]?, filePathKey: String?, imageDataKey: NSData, boundary: String) -> NSData {
let body = NSMutableData();
if parameters != nil {
for (key, value) in parameters! {
body.appendString(string: "--\(boundary)\r\n")
body.appendString(string: "Content-Disposition: form-data; name=\"\(key)\"\r\n\r\n")
body.appendString(string: "\(value)\r\n")
}
}
let filename = "user-profile.jpg"
let mimetype = "image/jpg"
body.appendString(string: "--\(boundary)\r\n")
body.appendString(string: "Content-Disposition: form-data; name=\"\(filePathKey!)\"; filename=\"\(filename)\"\r\n")
body.appendString(string: "Content-Type: \(mimetype)\r\n\r\n")
body.append(imageDataKey as Data)
body.appendString(string: "\r\n")
return body
}
}
extension NSMutableData {
func appendString(string: String) {
//let data = string.data(using: String.Encoding.utf8, allowLossyConversion: true)
let data = string.data(using: String.Encoding.utf8, allowLossyConversion: true)
append(data!)
}
}
error message:
imageData =Optional(2322803 bytes)
2022-12-12 04:50:44.756347+0300 ImageUploadExample[7201:311148] [] nw_protocol_get_quic_image_block_invoke dlopen libquic failed
******* response = Optional(<NSHTTPURLResponse: 0x6000031e55a0> { URL: http://localhost/~*******/PHP/App/scripts/imageUpload.php } { Status Code: 200, Headers {
Connection = (
"Keep-Alive"
);
"Content-Type" = (
"text/html; charset=UTF-8"
);
Date = (
"Mon, 12 Dec 2022 01:50:44 GMT"
);
"Keep-Alive" = (
"timeout=5, max=100"
);
Server = (
"Apache/2.4.48 (Unix) PHP/8.1.13"
);
"Transfer-Encoding" = (
Identity
);
"X-Powered-By" = (
"PHP/8.1.13"
);
} })
****** response data = {"Message":"Sorry, there was an error uploading your file.","Status":"Error","userId":"9"}
Optional({
Message = "Sorry, there was an error uploading your file.";
Status = Error;
userId = 9;
})

Swift, php - can't upload image

I'm trying to upload an image to my web server from an ios app using PHP. I have the following code that manages the upload:
func uploadImage()
{
// get userId from saved credentials
let userId = UserDefaults.standard.string(forKey: "userId")
let param = ["userId":userId]
let imageData = UIImageJPEGRepresentation(profPicIV.image!, 1)
if(imageData == nil ) { return }
self.imgUploadButton.isEnabled = false
let uploadScriptUrl = URL(string: "http://xxx.xxx.xxx.xxx/scripts/imageUpload.php")
let boundary = generateBoundaryString()
var request = NSMutableURLRequest(url: uploadScriptUrl!)
request.httpMethod = "POST"
request.httpBody = createBodyWithParameters(param as! [String : String], filePathKey: "file", imageDataKey: imageData!, boundary: boundary)
request.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type")
if (profPicIV.image == nil)
{
return
}
if(imageData == nil)
{
return
}
let session = URLSession.shared
let task = session.dataTask(with: request as URLRequest, completionHandler: {
(
data, response, error) in
guard ((data) != nil), let _:URLResponse = response, error == nil else {
print("error")
return
}
if let dataString = NSString(data: data!, encoding: String.Encoding.utf8.rawValue)
{
print(dataString)
}
})
task.resume()
}
along with the createBodyWithParameters:
func createBodyWithParameters(_ parameters: [String: String]?, filePathKey: String?, imageDataKey: Data, boundary: String) -> Data {
let body = NSMutableData();
if parameters != nil {
for (key, value) in parameters! {
body.appendString("--\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(key)\"\r\n\r\n")
body.appendString("\(value)\r\n")
}
}
let filename = "menu-image.jpg"
let mimetype = "image/jpg"
body.appendString("--\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(filePathKey!)\"; filename=\"\(filename)\"\r\n")
body.appendString("Content-Type: \(mimetype)\r\n\r\n")
body.append(imageDataKey)
body.appendString("\r\n")
body.appendString("--\(boundary)--\r\n")
return body as Data
}
}
//add appendString function
extension NSMutableData {
func appendString(_ string: String) {
let data = string.data(using: String.Encoding.utf8, allowLossyConversion: false)
append(data!)
}
}
My PHP page on my webserver looks like this:
<?php
$user_id = $_POST["userId"];
$target_dir = "../profPics/" . $user_id;
if(!file_exists($target_dir))
{
mkdir($target_dir, 0744, true);
}
$target_dir = $target_dir . "/" . basename($_FILES["file"]["name"]);
if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_dir)) {
echo json_encode([
"message" => "The file ". basename( $_FILES["file"]["name"]). " has been uploaded.",
"status" => "OK",
"userId" => $user_id
]);
} else {
echo json_encode([
"message" => "Sorry, there was an error uploading your picture.",
"status" => "Error",
"userId" => $user_id
]);
}
?>
but then I try to upload an image and it prints out an error in the console saying:
{"message":"Sorry, there was an error uploading your picture.","status":"Error","userId":"6"}
It is correctly grabbing the userId from my saved login info, and is successfully posting it to the PHP page because the PHP page is returning it in the error (userId = 6.) I can't see anything wrong in the apache error.log. Can anyone see where I'm going wrong? Thanks!

xcode 8 swift 3 image file won't upload to server

Using Xcode 8, Swift 3 and PHP.
Xcode and PHP are running without error.
Why isn't displayPic.image from simulator saved to pic1-1.png at server? All that appears is a blank file.
Xcode:
#IBAction func sendToServer(_ sender: UIButton) {
let url = NSURL(string: "http://www.example.com/picSaver.php")
var request = URLRequest(url: url! as URL)
request.httpMethod = "POST"
var boundary = generateBoundaryString()
request.setValue("multipart/form-data; boundary=\(boundary)",
forHTTPHeaderField: "Content-Type")
if (displayPic.image == nil)
{ return }
let image_data = UIImagePNGRepresentation(displayPic.image!)
var body = NSMutableData()
let fname = "porch-167.png"
let mimetype = "image/png"
body.append("--\(boundary)\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Disposition:form-data;
name=\"photo\"\r\n\r\n".data(using: String.Encoding.utf8)!)
body.append("Incoming\r\n".data(using: String.Encoding.utf8)!)
body.append("--\(boundary)\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Disposition:form-data; name=\"file\";
filename=\"\(fname)\"\r\n".data(using: String.Encoding.utf8)!)
body.append("Content-Type: \(mimetype)\r\n\r\n".data(using:
String.Encoding.utf8)!)
body.append(image_data!)
body.append("\r\n".data(using: String.Encoding.utf8)!)
body.append("--\(boundary)--\r\n".data(using:
String.Encoding.utf8)!)
request.httpBody = body as Data
let session = URLSession.shared
let task = session.dataTask(with: request as URLRequest) {
(
data, response, error) in
guard let _:Data = data, let _:URLResponse = response , error
== nil else {
print("error")
return
}
let dataString = String(data: data!, encoding:
String.Encoding(rawValue: String.Encoding.utf8.rawValue))
print(dataString)
}
task.resume()
}
}
func generateBoundaryString() -> String {
return "Boundary-\(NSUUID().uuidString)"
}
picSaver.php
<?php
$p=$_REQUEST["filename"]
move_uploaded_file($p["tmp_name"], pic1-1.png);
$data=Array("Reply"=>"Image saved at server");
echo json_encode($data);
?>
Is "filename" the correct parameter request for $p $_REQUEST ?
It works flawlessly now. Change $_REQUEST to $_FILES, and "filename" to "file"
<?php
$p=$_FILES["file"]
move_uploaded_file($p["tmp_name"], "pic1-1.png");
$data=Array("Reply"=>"Image saved at server");
echo json_encode($data);
?>

How can I insert a photo into a MySQL database with PHP using Swift iOS

I'm trying to insert a photo into a database using a php file with swift but I could only add the photo to a file under htdocs 'uploads' but I can't add the path to database.
Can someone tell me how to add a photo with parameters to database with swift knowing that I have used this tutorial:
http://swiftdeveloperblog.com/image-upload-example/
Here is my code:
Swift
// UploadViewController.swift
import UIKit
class UploadViewController: UIViewController,UIImagePickerControllerDelegate,UINavigationControllerDelegate
{
#IBOutlet weak var myActivityIndicator: UIActivityIndicatorView!
#IBOutlet weak var myImageView: UIImageView!
#IBAction func uploadButtonTapped(sender: AnyObject) {
//my Image upload
myImageUploadRequest()
}
override func viewDidLoad() {
super.viewDidLoad()
let defaults = NSUserDefaults.standardUserDefaults();
print("fffffff" + defaults.stringForKey("abc")!)
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
#IBAction func selectPhotoButtonTapped(sender: AnyObject) {
var myPickerController = UIImagePickerController()
myPickerController.delegate = self;
myPickerController.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
self.presentViewController(myPickerController, animated: true, completion: nil)
}
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject])
{
myImageView.image = info[UIImagePickerControllerOriginalImage] as? UIImage
self.dismissViewControllerAnimated(true, completion: nil)
}
func myImageUploadRequest()
{
let myUrl = NSURL(string: "http://localhost:8888/Swift/my-http-post-example.php");
//let myUrl = NSURL(string: "http://www.boredwear.com/utils/postImage.php");
let request = NSMutableURLRequest(URL:myUrl!);
request.HTTPMethod = "POST";
let param = [
"firstName" : "Sergey",
"lastName" : "Kargopolov",
"userId" : "9"
]
let boundary = generateBoundaryString()
request.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type")
let imageData = UIImageJPEGRepresentation(myImageView.image!, 1)
if(imageData==nil) { return; }
request.HTTPBody = createBodyWithParameters(param, filePathKey: "file", imageDataKey: imageData!, boundary: boundary)
myActivityIndicator.startAnimating();
let task = NSURLSession.sharedSession().dataTaskWithRequest(request) {
data, response, error in
if error != nil {
print("error=\(error)")
return
}
// You can print out response object
print("******* response = \(response)")
// Print out reponse body
let responseString = NSString(data: data!, encoding: NSUTF8StringEncoding)
print("****** response data = \(responseString!)")
var err: NSError?
do {
var json = try NSJSONSerialization.JSONObjectWithData(data!, options: .MutableContainers) as? NSDictionary
dispatch_async(dispatch_get_main_queue(),{
self.myActivityIndicator.stopAnimating()
self.myImageView.image = nil;
});
}
catch let error as NSError {
print("An error occurred: \(error)")
}
}
task.resume()
}
func createBodyWithParameters(parameters: [String: String]?, filePathKey: String?, imageDataKey: NSData, boundary: String) -> NSData {
var body = NSMutableData();
if parameters != nil {
for (key, value) in parameters! {
body.appendString("--\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(key)\"\r\n\r\n")
body.appendString("\(value)\r\n")
}
}
// defaults.setValue(String("0"), forKey: "abc")
let defaults = NSUserDefaults.standardUserDefaults()
if ((defaults.stringForKey("abc")!) == ""){
defaults.setValue(String("0"), forKey: "abc")
}
let filename = (defaults.stringForKey("abc")!)+".jpg"
defaults.setValue(String(Int((defaults.stringForKey("abc")!))!+1), forKey: "abc")
// let defaults = NSUserDefaults.standardUserDefaults();
//let filename = "user-profile.jpg"
let mimetype = "image/jpg"
body.appendString("--\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(filePathKey!)\"; filename=\"\(filename)\"\r\n")
body.appendString("Content-Type: \(mimetype)\r\n\r\n")
body.appendData(imageDataKey)
body.appendString("\r\n")
body.appendString("--\(boundary)--\r\n")
return body
}
func generateBoundaryString() -> String {
return "Boundary-\(NSUUID().UUIDString)"
}
}
extension NSMutableData {
func appendString(string: String) {
let data = string.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: true)
appendData(data!)
}
}
Here the PHP file in which I couldn't insert the photo in data
<?php
$firstName = $_POST["firstName"];
$lastName = $_POST["lastName"];
$userId = $_POST["userId"];
$target_dir = "uploads/";if(!file_exists($target_dir))
{
mkdir($target_dir, 0777, true);
}
$target_dir = $target_dir . "/" . basename($_FILES["file"]["name"]);
if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_dir))
{
echo json_encode([
"Message" => "The file ". basename( $_FILES["file"]["name"]). " has been uploaded.",
"Status" => "OK",
"userId" => $_REQUEST["userId"]
]);
} else {
echo json_encode([
"Message" => "Sorry, there was an error uploading your file.",
"Status" => "Error",
"userId" => $_REQUEST["userId"]
]);
}
?>

How to upload an image from my iOS app to a PHP server?

I don't know php and swift well so can you help me? I have a server: cs.hisarschool.k12.tr/ecs.php and this is the code:
<?php
$firstName = $_POST["firstName"];
$lastName = $_POST["lastName"];
$userId = $_POST["userId"];
$target_dir = "/var/www/html/uploads";
// $myfile = fopen($target_dir, "w");
if(!file_exists($target_dir))
{
echo "creating directory";
mkdir($target_dir, 0555, true);
}
//$target_file = $target_dir . "/" . basename($_FILES["file"]["name"]);
$target_file = $target_dir . "/sc.jpg";
if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file)) {
echo json_encode([
"Message" => "The file " . basename($_FILES["file"]["name"]) . " has been uploaded.",
"Status" => "OK",
"userId" => $_REQUEST["userId"]
]);
} else {
echo json_encode([
"Message" => "Sorry, there was an error uploading your file(" . basename($_FILES["filename"][name]) . ").",
"Status" => "Error",
"userId" => $_REQUEST["userId"]
]);
}
?>
The swift code:
//
// ViewController.swift
// application
//
// Created by kerem on 13/05/15.
// Copyright (c) 2015 kerem. All rights reserved.
//
import UIKit
class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
#IBOutlet weak var myImageView: UIImageView!
#IBOutlet weak var myActivityIndicator: UIActivityIndicatorView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
#IBAction func uploadButtonTapped(sender : AnyObject) {
myImageUploadRequest()
}
#IBAction func selectPhotoButtonTapped(sender : AnyObject) {
var myPickerController = UIImagePickerController()
myPickerController.delegate = self
myPickerController.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
self.presentViewController(myPickerController,animated:true, completion : nil)
}
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]) {
myImageView.image = info[UIImagePickerControllerOriginalImage] as? UIImage
self.dismissViewControllerAnimated(true, completion: nil)
}
//buraya yaz
func myImageUploadRequest() {
println("1")
let myUrl = NSURL(string : "cs.hisarschool.k12.tr/esc.php")//buraya
let request = NSMutableURLRequest(URL:myUrl!);
request.HTTPMethod = "POST";
let param = [
"firstName" : "Kerem",
"lastName" : "Guventurk",
"userId" : "dreamkiller"
]
let boundary = generateBoundaryString()
request.setValue("multipart/form-data; boundary=\(boundary)",forHTTPHeaderField:"Content-Type")
let imageData = UIImageJPEGRepresentation(myImageView.image, 1)
if (imageData == nil) {
return;
}
request.HTTPBody = createBodyWithParameters(param, filePathKey: "file", imageDataKey: imageData, boundary : boundary)
myActivityIndicator.startAnimating();
let task = NSURLSession.sharedSession().dataTaskWithRequest(request) {
data,response,error in
if error != nil {
println("error=\(error)")
return
}
println("******** response = \(response)")
let responseString = NSString(data:data,encoding:NSUTF8StringEncoding)
println("******** response data = \(responseString!)")
var err: NSError?
var json = NSJSONSerialization.JSONObjectWithData(data, options: .MutableContainers, error: &err) as? NSDictionary
dispatch_async(dispatch_get_main_queue(),{
self.myActivityIndicator.stopAnimating()
self.myImageView.image = nil;
});
}
task.resume()
}
//isim burada
func createBodyWithParameters(parameters: [String: String]?, filePathKey: String?, imageDataKey: NSData, boundary: String) -> NSData {
println("2")
var body = NSMutableData();
if parameters != nil {
for (key, value) in parameters! {
body.appendString("–\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(key)\"\r\n\r\n")
body.appendString("\(value)\r\n")
}
}
let filename = "user-profile.jpg"
let mimetype = "image/jpg"
body.appendString("–\(boundary)\r\n")
body.appendString("Content-Disposition: form-data; name=\"\(filePathKey!)\"; filename=\"\(filename)\"\r\n")
body.appendString("Content-Type: \(mimetype)\r\n\r\n")
body.appendData(imageDataKey)
body.appendString("\r\n")
body.appendString("–\(boundary)–\r\n")
return body
}
func generateBoundaryString() -> String {
return "Boundary-\(NSUUID().UUIDString)"
}
}
extension NSMutableData {
func appendString(string: String) {
let data = string.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: true)
appendData(data!)
}
}
I have the upload button and select button. The problem is, I can't actually upload a picture to the website. I tried different ways of selecting an URL, i used the directory of the server but none works... But then again, I don't know PHP or swift very well, I wrote this project with the help of a tutorial.

Categories