ScanCollectionView.swift 24 KB

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