natsuk4ze / gal

How to Save Image or Video to Photo Gallery in Flutter
https://pub.dev/packages/gal
BSD 3-Clause "New" or "Revised" License
83 stars 12 forks source link

Added name parameter in putImageBytes #205

Closed noob8boi closed 5 months ago

noob8boi commented 5 months ago

Overview

Please change this text to a brief statement of purpose or overview.

Related Issues

natsuk4ze commented 5 months ago

Thank you for submitting this PR @noob8boi Do you plan to implement it on platforms other than Android? If not, I will take over the work.

noob8boi commented 5 months ago

Thank you for submitting this PR @noob8boi Do you plan to implement it on platforms other than Android? If not, I will take over the work.

I can try for iOS

natsuk4ze commented 5 months ago

I can try for iOS

OK. I think you can use originalFilename in PHAssetResourceCreationOptions for

private func putMediaBytes(
  bytes: Data, album: String?, completion: @escaping (Bool, Error?) -> Void
) {
  writeContent(
    assetChangeRequest: {
      let request = PHAssetCreationRequest.forAsset()
      request.addResource(with: .photo, data: bytes, options: //HERE)
      return request
    }, album: album, completion: completion
  )
}

And mention me if you have finished the work or need help.

noob8boi commented 5 months ago

I can try for iOS

OK. I think you can use originalFilename in PHAssetResourceCreationOptions for

private func putMediaBytes(
  bytes: Data, album: String?, completion: @escaping (Bool, Error?) -> Void
) {
  writeContent(
    assetChangeRequest: {
      let request = PHAssetCreationRequest.forAsset()
      request.addResource(with: .photo, data: bytes, options: //HERE)
      return request
    }, album: album, completion: completion
  )
}

And mention me if you have finished the work or need help.

sure may i know whats your deadline for this? just making sure if its ok to work on it tomorrow or day after tomorrow

natsuk4ze commented 5 months ago

sure may i know whats your deadline for this? just making sure if its ok to work on it tomorrow or day after tomorrow

It means to add it at the opions. I just finished adding the windows platform. I have time now, can I take over the process?

noob8boi commented 5 months ago

sure may i know whats your deadline for this? just making sure if its ok to work on it tomorrow or day after tomorrow

It means to add it at the opions. I just finished adding the windows platform. I have time now, can I take over the process?

for sure i dont mind.. thank you!

natsuk4ze commented 5 months ago

for sure i dont mind.. thank you!

OK. Thanks👍