getBlob.lua 442 B

123456789101112131415161718192021
  1. return {
  2. summary = 'Get the bytes backing this Image as a `Blob`.',
  3. description = 'Returns a Blob containing the raw bytes of the Image.',
  4. arguments = {},
  5. returns = {
  6. blob = {
  7. type = 'Blob',
  8. description = 'The Blob instance containing the bytes for the `Image`.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'blob' }
  15. }
  16. },
  17. related = {
  18. 'Blob:getPointer',
  19. 'Sound:getBlob'
  20. }
  21. }