繁体   English   中英

快速保存和检索图像以进行解析

[英]Saving and retrieving an image from parse in swift

我有一个称为ProfilePage的类,在该类中,我选择要显示为个人资料图片的图像。 我已经使用ImagePickerController成功打开了图像。 但是,我无法将此图像上传到Parse.com仪表板到“用户”类中。

我正在尝试将图像从UIImagePicker上传到Parse.com。 我遵循了一些教程,并查看了用于上传文件的文档,但它们都将其添加到解析中的新“类”中。 我希望能够上传到“用户”类中,其中有一个名为“个人资料图片”的字段

class ProfilePage: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate{
    @IBOutlet weak var backButton: UIButton!
    @IBOutlet weak var profilePicture: UIImageView!
    @IBOutlet weak var editProfilePicture: UIButton!
    @IBOutlet weak var nameTag: UILabel!
    @IBOutlet weak var Bio: UILabel!
    @IBOutlet weak var saveProfileChanges: UIButton!

    override func viewDidLoad() {
        super.viewDidLoad()

        nameTag.text = ((PFUser.current()?.username)!)
    }

    @IBAction func didTapSaveProfileChanges(_ sender: Any) {
        PFUser.current()?.username = "Kane"

        do {
            try PFUser.current()?.saveInBackground(block: { (success, error) in
                if error != nil {
                    print("unable to save new username")
                }
                else {
                    print("new username saved")
                    self.viewDidLoad()
                }
            })
        } catch  {
            print("unable to save new username")
        }

    @IBAction func didTapBackButton(_ sender: Any) {
        self.performSegue(withIdentifier: "GoToHomePage", sender: self)
    }

    @IBAction func didTapChooseImage(_ sender: Any) {
        let imagePickerController = UIImagePickerController()
        imagePickerController.delegate = self


        let actionSheet = UIAlertController(title: "Photo Source", message: "Choose a source", preferredStyle: .actionSheet)

        actionSheet.addAction(UIAlertAction(title: "Camera", style: .default, handler: { (action:UIAlertAction) in

            if UIImagePickerController.isSourceTypeAvailable(.camera) {
                imagePickerController.sourceType = .camera
                self.present(imagePickerController, animated: true, completion: nil)
            }
            else {
                print("There no is no camera available")
            }
        }))

        actionSheet.addAction(UIAlertAction(title: "Photo Library", style: .default, handler: { (action:UIAlertAction) in
            imagePickerController.sourceType = .photoLibrary
            self.present(imagePickerController, animated: true, completion: nil)
        }))

        actionSheet.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))

        self.present(actionSheet, animated: true, completion: nil)
    }

    func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
        let image = info[UIImagePickerControllerOriginalImage] as! UIImage
        profilePicture.image = image
        picker.dismiss(animated: true, completion: nil)
    }

    func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
        picker.dismiss(animated: true, completion: nil)
    }

如果有人有任何建议,将不胜感激。

这是我的代码,我使用此代码将图片上传到银行

    let profileImageData = UIImageJPEGRepresentation(photoProfile.image!,0.00001)

    var myPFObj = PFObject(className:"YouClass")

    let myFile = PFFile(name: "ProfilePic", data: profileImageData!)    
    myPFObj.setObject(myFile!, forKey: "profile_picture")

    myPFObj.saveInBackgroundWithBlock {
      (success: Bool, error: Error?) -> Void in
      if (success) {

      } else {

      }
    }

我希望能有所帮助。

首先,重要的是要查看有关从parse.com迁移的迁移文档,因为它将很快关闭。

http://parse.com/migration

现在到您的问题。 这是swift 3中当前登录用户的示例。

@IBOutlet weak var profilePicture: UIImageView!


// ImagePicker delegate
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
    if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {

        profilePicture.image = image
    }
    dismiss(animated: true, completion: nil)
}


@IBAction func updateProfileImage(_ sender: AnyObject) {
                let userToUpdate = PFUser.current()!


                    // Save Avatar
                    if profilePicture.image != nil {
                        let imageData = UIImageJPEGRepresentation(avatarImg.image!, 0.5)
                        let imageFile = PFFile(name:"avatar.jpg", data:imageData!)
                        userToUpdate["profilePicture"] = imageFile
                    }

                    // Saving block
                    userToUpdate.saveInBackground(block: { (succ, error) in
                        if error == nil {

                            print("Your Profile has been updated!")
                        } else {

                            print("Failed")

                    }})


    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM