ScanCollectionView.swift 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. //
  2. // ScanCollectionView.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 21/08/18.
  6. // Copyright (c) 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. @available(iOS 13.0, *)
  25. class DragDropViewController: UIViewController {
  26. //Data Source for collectionViewSource
  27. private var itemsSource: [String] = []
  28. //Data Source for collectionViewDestination
  29. private var imagesDestination: [UIImage] = []
  30. private var itemsDestination: [String] = []
  31. //AppDelegate
  32. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  33. //MARK: Outlets
  34. @IBOutlet weak var collectionViewSource: UICollectionView!
  35. @IBOutlet weak var collectionViewDestination: UICollectionView!
  36. @IBOutlet weak var cancel: UIBarButtonItem!
  37. @IBOutlet weak var save: UIBarButtonItem!
  38. @IBOutlet weak var add: UIButton!
  39. @IBOutlet weak var transferDown: UIButton!
  40. @IBOutlet weak var labelTitlePDFzone: UILabel!
  41. @IBOutlet weak var segmentControlFilter: UISegmentedControl!
  42. // filter
  43. enum typeFilter {
  44. case original
  45. case grayScale
  46. case bn
  47. }
  48. private var filter: typeFilter = typeFilter.original
  49. override var canBecomeFirstResponder: Bool { return true }
  50. //MARK: View Lifecycle Methods
  51. override func viewDidLoad() {
  52. super.viewDidLoad()
  53. collectionViewSource.dragInteractionEnabled = true
  54. collectionViewSource.dragDelegate = self
  55. collectionViewSource.dropDelegate = self
  56. collectionViewDestination.dragInteractionEnabled = true
  57. collectionViewDestination.dropDelegate = self
  58. collectionViewDestination.dragDelegate = self
  59. collectionViewDestination.reorderingCadence = .fast //default value - .immediate
  60. self.navigationItem.title = NSLocalizedString("_scanned_images_", comment: "")
  61. cancel.title = NSLocalizedString("_cancel_", comment: "")
  62. save.title = NSLocalizedString("_save_", comment: "")
  63. labelTitlePDFzone.text = NSLocalizedString("_scan_label_document_zone_", comment: "")
  64. segmentControlFilter.setTitle(NSLocalizedString("_filter_original_", comment: ""), forSegmentAt: 0)
  65. segmentControlFilter.setTitle(NSLocalizedString("_filter_grayscale_", comment: ""), forSegmentAt: 1)
  66. segmentControlFilter.setTitle(NSLocalizedString("_filter_bn_", comment: ""), forSegmentAt: 2)
  67. add.setImage(UIImage(named: "add")?.image(color: NCBrandColor.shared.brandElement, size: 25), for: .normal)
  68. transferDown.setImage(UIImage(named: "transferDown")?.image(color: NCBrandColor.shared.brandElement, size: 25), for: .normal)
  69. let longPressRecognizer = UILongPressGestureRecognizer(target: self, action: #selector(handleLongPressGesture(recognizer:)))
  70. collectionViewSource.addGestureRecognizer(longPressRecognizer)
  71. let longPressRecognizerPlus = UILongPressGestureRecognizer(target: self, action: #selector(handleLongPressGesture(recognizer:)))
  72. add.addGestureRecognizer(longPressRecognizerPlus)
  73. // changeTheming
  74. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterChangeTheming), object: nil)
  75. changeTheming()
  76. loadImage()
  77. }
  78. @objc func changeTheming() {
  79. view.backgroundColor = NCBrandColor.shared.backgroundForm
  80. collectionViewSource.backgroundColor = NCBrandColor.shared.backgroundForm
  81. collectionViewDestination.backgroundColor = NCBrandColor.shared.backgroundForm
  82. collectionViewSource.reloadData()
  83. collectionViewDestination.reloadData()
  84. labelTitlePDFzone.textColor = NCBrandColor.shared.textView
  85. labelTitlePDFzone.backgroundColor = .systemBackground
  86. }
  87. //MARK: Button Action
  88. @IBAction func cancelAction(sender: UIBarButtonItem) {
  89. self.dismiss(animated: true, completion: nil)
  90. }
  91. @IBAction func saveAction(sender: UIBarButtonItem) {
  92. if imagesDestination.count > 0 {
  93. var images: [UIImage] = []
  94. var serverUrl = appDelegate.activeServerUrl!
  95. for image in imagesDestination {
  96. images.append(filter(image: image)!)
  97. }
  98. if let directory = CCUtility.getDirectoryScanDocuments() {
  99. serverUrl = directory
  100. }
  101. let formViewController = NCCreateFormUploadScanDocument.init(serverUrl: serverUrl, arrayImages: images)
  102. self.navigationController?.pushViewController(formViewController, animated: true)
  103. }
  104. }
  105. @IBAction func add(sender: UIButton) {
  106. NCCreateScanDocument.shared.openScannerDocument(viewController: self)
  107. }
  108. @IBAction func transferDown(sender: UIButton) {
  109. for fileName in itemsSource {
  110. if !itemsDestination.contains(fileName) {
  111. let fileNamePathAt = CCUtility.getDirectoryScan() + "/" + fileName
  112. guard let data = try? Data(contentsOf: URL(fileURLWithPath: fileNamePathAt)) else { return }
  113. guard let image = UIImage(data: data) else { return }
  114. imagesDestination.append(image)
  115. itemsDestination.append(fileName)
  116. }
  117. }
  118. // Save button
  119. if imagesDestination.count == 0 {
  120. save.isEnabled = false
  121. } else {
  122. save.isEnabled = true
  123. }
  124. collectionViewDestination.reloadData()
  125. }
  126. @IBAction func indexChanged(_ sender: AnyObject) {
  127. switch segmentControlFilter.selectedSegmentIndex
  128. {
  129. case 0:
  130. filter = typeFilter.original
  131. case 1:
  132. filter = typeFilter.grayScale
  133. case 2:
  134. filter = typeFilter.bn
  135. default:
  136. break
  137. }
  138. collectionViewDestination.reloadData()
  139. }
  140. func loadImage() {
  141. itemsSource.removeAll()
  142. do {
  143. let atPath = CCUtility.getDirectoryScan()!
  144. let directoryContents = try FileManager.default.contentsOfDirectory(atPath: atPath)
  145. for fileName in directoryContents {
  146. if fileName.first != "." {
  147. itemsSource.append(fileName)
  148. }
  149. }
  150. } catch {
  151. print(error.localizedDescription)
  152. }
  153. itemsSource = itemsSource.sorted()
  154. collectionViewSource.reloadData()
  155. // Save button
  156. if imagesDestination.count == 0 {
  157. save.isEnabled = false
  158. } else {
  159. save.isEnabled = true
  160. }
  161. }
  162. //MARK: Private Methods
  163. func filter(image: UIImage) -> UIImage? {
  164. var inputContrast: Double = 0
  165. if filter == typeFilter.original {
  166. return image
  167. }
  168. if filter == typeFilter.grayScale {
  169. inputContrast = 1
  170. }
  171. if filter == typeFilter.bn {
  172. inputContrast = 4
  173. }
  174. let ciImage = CIImage(image: image)!
  175. let imageFilter = ciImage.applyingFilter("CIColorControls", parameters: ["inputSaturation": 0, "inputContrast": inputContrast])
  176. let context:CIContext = CIContext.init(options: nil)
  177. let cgImage:CGImage = context.createCGImage(imageFilter, from: imageFilter.extent)!
  178. let image:UIImage = UIImage.init(cgImage: cgImage)
  179. return image
  180. }
  181. /// This method moves a cell from source indexPath to destination indexPath within the same collection view. It works for only 1 item. If multiple items selected, no reordering happens.
  182. ///
  183. /// - Parameters:
  184. /// - coordinator: coordinator obtained from performDropWith: UICollectionViewDropDelegate method
  185. /// - destinationIndexPath: indexpath of the collection view where the user drops the element
  186. /// - collectionView: collectionView in which reordering needs to be done.
  187. private func reorderItems(coordinator: UICollectionViewDropCoordinator, destinationIndexPath: IndexPath, collectionView: UICollectionView) {
  188. let items = coordinator.items
  189. if items.count == 1, let item = items.first, let sourceIndexPath = item.sourceIndexPath {
  190. var dIndexPath = destinationIndexPath
  191. if dIndexPath.row >= collectionView.numberOfItems(inSection: 0) {
  192. dIndexPath.row = collectionView.numberOfItems(inSection: 0) - 1
  193. }
  194. collectionView.performBatchUpdates({
  195. if collectionView === collectionViewDestination {
  196. imagesDestination.remove(at: sourceIndexPath.row)
  197. imagesDestination.insert(item.dragItem.localObject as! UIImage, at: dIndexPath.row)
  198. let fileName = itemsDestination[sourceIndexPath.row]
  199. itemsDestination.remove(at: sourceIndexPath.row)
  200. itemsDestination.insert(fileName, at: dIndexPath.row)
  201. } else {
  202. itemsSource.remove(at: sourceIndexPath.row)
  203. itemsSource.insert(item.dragItem.localObject as! String, at: dIndexPath.row)
  204. }
  205. collectionView.deleteItems(at: [sourceIndexPath])
  206. collectionView.insertItems(at: [dIndexPath])
  207. })
  208. coordinator.drop(items.first!.dragItem, toItemAt: dIndexPath)
  209. }
  210. }
  211. /// This method copies a cell from source indexPath in 1st collection view to destination indexPath in 2nd collection view. It works for multiple items.
  212. ///
  213. /// - Parameters:
  214. /// - coordinator: coordinator obtained from performDropWith: UICollectionViewDropDelegate method
  215. /// - destinationIndexPath: indexpath of the collection view where the user drops the element
  216. /// - collectionView: collectionView in which reordering needs to be done.
  217. private func copyItems(coordinator: UICollectionViewDropCoordinator, destinationIndexPath: IndexPath, collectionView: UICollectionView)
  218. {
  219. collectionView.performBatchUpdates({
  220. var indexPaths: [IndexPath] = []
  221. for (index, item) in coordinator.items.enumerated() {
  222. let indexPath = IndexPath(row: destinationIndexPath.row + index, section: destinationIndexPath.section)
  223. if collectionView === collectionViewDestination {
  224. let fileName = item.dragItem.localObject as! String
  225. let fileNamePathAt = CCUtility.getDirectoryScan() + "/" + fileName
  226. guard let data = try? Data(contentsOf: URL(fileURLWithPath: fileNamePathAt)) else {
  227. return
  228. }
  229. guard let image = UIImage(data: data) else {
  230. return
  231. }
  232. imagesDestination.insert(image, at: indexPath.row)
  233. itemsDestination.insert(fileName, at: indexPath.row)
  234. } else {
  235. // NOT PERMITTED
  236. return
  237. }
  238. indexPaths.append(indexPath)
  239. }
  240. collectionView.insertItems(at: indexPaths)
  241. })
  242. }
  243. // MARK: - UIGestureRecognizerv - Paste
  244. @objc func handleLongPressGesture(recognizer: UIGestureRecognizer) {
  245. if recognizer.state == UIGestureRecognizer.State.began {
  246. self.becomeFirstResponder()
  247. let pasteboard = UIPasteboard.general
  248. if let recognizerView = recognizer.view, let recognizerSuperView = recognizerView.superview, pasteboard.hasImages {
  249. UIMenuController.shared.menuItems = [UIMenuItem(title: "Paste", action: #selector(pasteImage))]
  250. UIMenuController.shared.setTargetRect(recognizerView.frame, in: recognizerSuperView)
  251. UIMenuController.shared.setMenuVisible(true, animated:true)
  252. }
  253. }
  254. }
  255. override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
  256. if action == #selector(pasteImage) {
  257. return true
  258. }
  259. return false
  260. }
  261. @objc func pasteImage() {
  262. let pasteboard = UIPasteboard.general
  263. if pasteboard.hasImages {
  264. let fileName = CCUtility.createFileName("scan.png", fileDate: Date(), fileType: PHAssetMediaType.image, keyFileName: NCBrandGlobal.shared.keyFileNameMask, keyFileNameType: NCBrandGlobal.shared.keyFileNameType, keyFileNameOriginal: NCBrandGlobal.shared.keyFileNameOriginal)!
  265. let fileNamePath = CCUtility.getDirectoryScan() + "/" + fileName
  266. guard let image = pasteboard.image?.fixedOrientation() else {
  267. return
  268. }
  269. do {
  270. try image.pngData()?.write(to: NSURL.fileURL(withPath: fileNamePath), options: .atomic)
  271. } catch {
  272. return
  273. }
  274. loadImage()
  275. }
  276. }
  277. }
  278. // MARK: - UICollectionViewDataSource Methods
  279. @available(iOS 13.0, *)
  280. extension DragDropViewController : UICollectionViewDataSource {
  281. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  282. return collectionView == collectionViewSource ? itemsSource.count : imagesDestination.count
  283. }
  284. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  285. if collectionView == collectionViewSource {
  286. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell1", for: indexPath) as! ScanCell
  287. let fileNamePath = CCUtility.getDirectoryScan() + "/" + itemsSource[indexPath.row]
  288. guard let data = try? Data(contentsOf: URL(fileURLWithPath: fileNamePath)) else {
  289. return cell
  290. }
  291. guard var image = UIImage(data: data) else {
  292. return cell
  293. }
  294. let imageWidthInPixels = image.size.width * image.scale
  295. let imageHeightInPixels = image.size.height * image.scale
  296. // 72 DPI
  297. if imageWidthInPixels > 595 || imageHeightInPixels > 842 {
  298. image = image.resizeImage(size: CGSize(width: 595, height: 842), isAspectRation: true) ?? image
  299. }
  300. cell.customImageView?.image = image
  301. cell.delete.addTarget(self, action: #selector(deleteSource(_:)), for: .touchUpInside)
  302. return cell
  303. } else {
  304. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell2", for: indexPath) as! ScanCell
  305. var image = imagesDestination[indexPath.row]
  306. let imageWidthInPixels = image.size.width * image.scale
  307. let imageHeightInPixels = image.size.height * image.scale
  308. // 72 DPI
  309. if imageWidthInPixels > 595 || imageHeightInPixels > 842 {
  310. image = image.resizeImage(size: CGSize(width: 595, height: 842), isAspectRation: true) ?? image
  311. }
  312. cell.customImageView?.image = self.filter(image: image)
  313. cell.customLabel.text = NSLocalizedString("_scan_document_pdf_page_", comment: "") + " " + "\(indexPath.row+1)"
  314. cell.delete.addTarget(self, action: #selector(deleteDestination(_:)), for: .touchUpInside)
  315. cell.rotate.addTarget(self, action: #selector(rotateDestination(_:)), for: .touchUpInside)
  316. return cell
  317. }
  318. }
  319. @objc func deleteSource(_ sender: UIButton) {
  320. let buttonPosition:CGPoint = sender.convert(.zero, to: collectionViewSource)
  321. let indexPath:IndexPath = collectionViewSource.indexPathForItem(at: buttonPosition)!
  322. let fileNameAtPath = CCUtility.getDirectoryScan() + "/" + itemsSource[indexPath.row]
  323. CCUtility.removeFile(atPath: fileNameAtPath)
  324. itemsSource.remove(at: indexPath.row)
  325. collectionViewSource.reloadData()
  326. }
  327. @objc func deleteDestination(_ sender:UIButton) {
  328. let buttonPosition:CGPoint = sender.convert(.zero, to: collectionViewDestination)
  329. let indexPath:IndexPath = collectionViewDestination.indexPathForItem(at: buttonPosition)!
  330. imagesDestination.remove(at: indexPath.row)
  331. itemsDestination.remove(at: indexPath.row)
  332. collectionViewDestination.reloadData()
  333. // Save button
  334. if imagesDestination.count == 0 {
  335. save.isEnabled = false
  336. } else {
  337. save.isEnabled = true
  338. }
  339. }
  340. @objc func rotateDestination(_ sender:UIButton) {
  341. let buttonPosition:CGPoint = sender.convert(.zero, to: collectionViewDestination)
  342. let indexPath:IndexPath = collectionViewDestination.indexPathForItem(at: buttonPosition)!
  343. let image = imagesDestination[indexPath.row]
  344. imagesDestination[indexPath.row] = image.rotate(radians: .pi/2)!
  345. collectionViewDestination.reloadData()
  346. }
  347. }
  348. extension UIImage {
  349. func rotate(radians: Float) -> UIImage? {
  350. var newSize = CGRect(origin: CGPoint.zero, size: self.size).applying(CGAffineTransform(rotationAngle: CGFloat(radians))).size
  351. // Trim off the extremely small float value to prevent core graphics from rounding it up
  352. newSize.width = floor(newSize.width)
  353. newSize.height = floor(newSize.height)
  354. UIGraphicsBeginImageContextWithOptions(newSize, true, self.scale)
  355. let context = UIGraphicsGetCurrentContext()!
  356. // Move origin to middle
  357. context.translateBy(x: newSize.width/2, y: newSize.height/2)
  358. // Rotate around middle
  359. context.rotate(by: CGFloat(radians))
  360. // Draw the image at its center
  361. self.draw(in: CGRect(x: -self.size.width/2, y: -self.size.height/2, width: self.size.width, height: self.size.height))
  362. let newImage = UIGraphicsGetImageFromCurrentImageContext()
  363. UIGraphicsEndImageContext()
  364. return newImage
  365. }
  366. }
  367. // MARK: - UICollectionViewDragDelegate Methods
  368. @available(iOS 13.0, *)
  369. extension DragDropViewController : UICollectionViewDragDelegate
  370. {
  371. func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
  372. if collectionView == collectionViewSource {
  373. let item = itemsSource[indexPath.row]
  374. let itemProvider = NSItemProvider(object: item as NSString)
  375. let dragItem = UIDragItem(itemProvider: itemProvider)
  376. dragItem.localObject = item
  377. return [dragItem]
  378. } else {
  379. let item = imagesDestination[indexPath.row]
  380. let itemProvider = NSItemProvider(object: item as UIImage)
  381. let dragItem = UIDragItem(itemProvider: itemProvider)
  382. dragItem.localObject = item
  383. return [dragItem]
  384. }
  385. }
  386. func collectionView(_ collectionView: UICollectionView, itemsForAddingTo session: UIDragSession, at indexPath: IndexPath, point: CGPoint) -> [UIDragItem] {
  387. if collectionView == collectionViewSource {
  388. let item = itemsSource[indexPath.row]
  389. let itemProvider = NSItemProvider(object: item as NSString)
  390. let dragItem = UIDragItem(itemProvider: itemProvider)
  391. dragItem.localObject = item
  392. return [dragItem]
  393. } else {
  394. let item = imagesDestination[indexPath.row]
  395. let itemProvider = NSItemProvider(object: item as UIImage)
  396. let dragItem = UIDragItem(itemProvider: itemProvider)
  397. dragItem.localObject = item
  398. return [dragItem]
  399. }
  400. }
  401. func collectionView(_ collectionView: UICollectionView, dragPreviewParametersForItemAt indexPath: IndexPath) -> UIDragPreviewParameters? {
  402. let previewParameters = UIDragPreviewParameters()
  403. if collectionView == collectionViewSource {
  404. previewParameters.visiblePath = UIBezierPath(rect: CGRect(x: 20, y: 20, width: 100, height: 100))
  405. } else {
  406. previewParameters.visiblePath = UIBezierPath(rect: CGRect(x: 20, y: 20, width: 80, height: 80))
  407. }
  408. return previewParameters
  409. }
  410. }
  411. // MARK: - UICollectionViewDropDelegate Methods
  412. @available(iOS 13.0, *)
  413. extension DragDropViewController : UICollectionViewDropDelegate {
  414. func collectionView(_ collectionView: UICollectionView, canHandle session: UIDropSession) -> Bool {
  415. return true //session.canLoadObjects(ofClass: NSString.self)
  416. }
  417. func collectionView(_ collectionView: UICollectionView, dropSessionDidUpdate session: UIDropSession, withDestinationIndexPath destinationIndexPath: IndexPath?) -> UICollectionViewDropProposal {
  418. if collectionView == collectionViewSource {
  419. if collectionView.hasActiveDrag {
  420. return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
  421. } else {
  422. return UICollectionViewDropProposal(operation: .forbidden)
  423. }
  424. } else {
  425. if collectionView.hasActiveDrag {
  426. return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
  427. } else {
  428. return UICollectionViewDropProposal(operation: .copy, intent: .insertAtDestinationIndexPath)
  429. }
  430. }
  431. }
  432. func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) {
  433. let destinationIndexPath: IndexPath
  434. switch coordinator.proposal.operation {
  435. case .move:
  436. if let indexPath = coordinator.destinationIndexPath {
  437. destinationIndexPath = indexPath
  438. } else {
  439. // Get last index path of table view.
  440. let section = collectionView.numberOfSections - 1
  441. let row = collectionView.numberOfItems(inSection: section)
  442. destinationIndexPath = IndexPath(row: row, section: section)
  443. }
  444. self.reorderItems(coordinator: coordinator, destinationIndexPath: destinationIndexPath, collectionView: collectionView)
  445. break
  446. case .copy:
  447. // Get last index path of table view.
  448. let section = collectionView.numberOfSections - 1
  449. let row = collectionView.numberOfItems(inSection: section)
  450. destinationIndexPath = IndexPath(row: row, section: section)
  451. self.copyItems(coordinator: coordinator, destinationIndexPath: destinationIndexPath, collectionView: collectionView)
  452. break
  453. default:
  454. return
  455. }
  456. }
  457. func collectionView(_ collectionView: UICollectionView, dropSessionDidEnd session: UIDropSession) {
  458. collectionViewDestination.reloadData()
  459. // Save button
  460. if imagesDestination.count == 0 {
  461. save.isEnabled = false
  462. } else {
  463. save.isEnabled = true
  464. }
  465. }
  466. }