{"id":13743937,"url":"https://github.com/bashi/exif-as3","last_synced_at":"2026-01-05T14:13:20.111Z","repository":{"id":8715124,"uuid":"10384502","full_name":"bashi/exif-as3","owner":"bashi","description":"Exif reading library for AS3","archived":false,"fork":false,"pushed_at":"2017-08-01T11:15:14.000Z","size":14,"stargazers_count":19,"open_issues_count":1,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-28T22:49:00.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"ActionScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bashi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-30T14:26:07.000Z","updated_at":"2021-09-10T18:00:03.000Z","dependencies_parsed_at":"2022-09-19T07:00:47.594Z","dependency_job_id":null,"html_url":"https://github.com/bashi/exif-as3","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bashi%2Fexif-as3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bashi%2Fexif-as3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bashi%2Fexif-as3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bashi%2Fexif-as3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bashi","download_url":"https://codeload.github.com/bashi/exif-as3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245136349,"owners_count":20566586,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T05:01:00.000Z","updated_at":"2026-01-05T14:13:20.069Z","avatar_url":"https://github.com/bashi.png","language":"ActionScript","funding_links":[],"categories":["File Formats"],"sub_categories":["Misc Formats"],"readme":"exif-as3\n========\n\nExif reading library for AS3. You can find the specification at http://www.exif.org/Exif2-2.PDF.\n\nExamples\n========\n\nDisplay thumbnail image\n-----------------------\n\nThe following code displays original JPEG image and thumbnail image.\n\n    import jp.shichiseki.exif.*;\n    \n    var loader:ExifLoader = new ExifLoader();\n    \n    private function loadImage():void {\n      loader.addEventListener(Event.COMPLETE, onComplete);\n      loader.load(new URLRequest(\"http://www.example.com/sample.jpg\"));\n    }\n    \n    private function onComplete(e:Event):void {\n      // display image\n      addChild(loader);\n      // display thumbnail image\n      var thumbLoader:Loader = new Loader();\n      thumbLoader.loadBytes(loader.exif.thumbnailData);\n      addChild(thumbLoader);\n    }\n\nShow Exif IFD informations\n--------------------------\n\nThe following code shows Exif IFD information.\n\n    import jp.shichiseki.exif.*;\n    \n    var loader:ExifLoader = new ExifLoader();\n    \n    private function loadImage():void {\n      loader.addEventListener(Event.COMPLETE, onComplete);\n      loader.load(new URLRequest(\"http://www.example.com/sample.jpg\"));\n    }\n    \n    private function onComplete(e:Event):void {\n      if (loader.exif.ifds.primary)\n        displayIFD(loader.exif.ifds.primary);\n      if (loader.exif.ifds.exif)\n        displayIFD(loader.exif.ifds.exif);\n      if (loader.exif.ifds.gps)\n        displayIFD(loader.exif.ifds.gps);\n      if (loader.exif.ifds.interoperability)\n        displayIFD(loader.exif.ifds.interoperability);\n      if (loader.exif.ifds.thumbnail)\n        displayIFD(loader.exif.ifds.thumbnail);\n    }\n    \n    private function displayIFD(ifd:IFD):void {\n      trace(\" --- \" + ifd.level + \" --- \");\n      for (var entry:String in ifd) {\n        trace(entry + \": \" + ifd[entry]);\n      }\n    }\n\nLisence\n=======\n\nMIT-license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbashi%2Fexif-as3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbashi%2Fexif-as3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbashi%2Fexif-as3/lists"}