{"id":33002072,"url":"https://github.com/rawstudio/rawstudio","last_synced_at":"2025-11-18T08:02:12.399Z","repository":{"id":23716416,"uuid":"27089130","full_name":"rawstudio/rawstudio","owner":"rawstudio","description":"Rawstudio is an open-source program to read and manipulate RAW images from digital cameras.","archived":false,"fork":false,"pushed_at":"2024-03-17T08:39:04.000Z","size":11885,"stargazers_count":84,"open_issues_count":23,"forks_count":21,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-06-21T18:21:03.852Z","etag":null,"topics":["cr2","digital-camera","dng","nef","raw"],"latest_commit_sha":null,"homepage":"http://rawstudio.org/","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rawstudio.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-11-24T18:36:08.000Z","updated_at":"2024-04-03T01:47:08.000Z","dependencies_parsed_at":"2024-06-21T16:59:40.124Z","dependency_job_id":"f28850f8-0c41-48ce-a862-f46e66a6bbd2","html_url":"https://github.com/rawstudio/rawstudio","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/rawstudio/rawstudio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawstudio%2Frawstudio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawstudio%2Frawstudio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawstudio%2Frawstudio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawstudio%2Frawstudio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rawstudio","download_url":"https://codeload.github.com/rawstudio/rawstudio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawstudio%2Frawstudio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285028340,"owners_count":27102545,"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","status":"online","status_checked_at":"2025-11-18T02:00:05.759Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cr2","digital-camera","dng","nef","raw"],"created_at":"2025-11-13T14:00:24.896Z","updated_at":"2025-11-18T08:02:12.384Z","avatar_url":"https://github.com/rawstudio.png","language":"C","readme":"About Rawstudio\n===============\n\nRawstudio is an open-source program to read and manipulate RAW images from \ndigital cameras.\n\nTo get the best quality out of your digital camera, it is often recommended\nthat you record your pictures in RAW format. This format is mostly specific\nto a camera and cannot be read by most image editing applications. \nOur goal is to supply you with a tool, where you can have the benefits of \nRAW images and the ease of use of JPEG images.\n\nThe main focus of Rawstudio is to enable efficient review and fast processing \nof large image collections. We aim to supply you with a tool that makes it\npossible for you to review and process several hundred images\nin a matter of a few hours.\n\nRawstudio will convert your RAW files into JPEG, PNG or TIF images which you\ncan then print or send to friends and clients.\n\nRawstudio is intended as the first tool in your image processing chain. \nAfter you have made your overall image adjustments to your image, you can \nuse an image editing application to further work on your images. \nRawstudio itself is a highly specialized application for reviewing and \nprocessing RAW images, not a fully featured image editing application.\n\nFeature List\n============\n\n* Intuitive GTK+ interface\n* Full DNG Color Profile support\n* Batch processing\n* Tethered shooting\n* Various post-shot controls (white balance, saturation and exposure compensation among others)\n* Easy and flexible copy\u0026paste settings between images\n* Develop images directly on storage card\n* Image tagging and sorting\n* Automatic lens distortion correction\n* Advanced noise reduction\n* Unique intelligent sharpening\n* Chromatic aberration and vignetting correction\n* Exposure mask\n* Cropping\n* Straighten\n* Fullscreen mode\n* Secondary monitor support\n* Image location independent\n* Automatic filenaming based on EXIF information\n* 32 bit float point precision image processing\n* Optimized for and SSE and SSE2 (detected runtime) and fully multithreaded\n* And much more...\n\nBuilding from git\n=================\n\nBuilding Rawstudio yourself is possible with a few library requirements.\n\nFor Ubuntu 19.10 the following should install all build dependencies:\n\n```bash\n$ sudo apt install make \\\n    gcc \\\n    g++ \\\n    autoconf \\\n    libtool-bin \\\n    libglib2.0-dev-bin \\\n    automake \\\n    gettext \\\n    libjpeg-turbo8-dev \\\n    libtiff5-dev \\\n    libglib2.0-dev \\\n    libgtk-3-dev \\\n    libxml2-dev \\\n    libgconf2-dev \\\n    libsqlite3-dev \\\n    liblensfun-dev \\\n    liblcms2-dev \\\n    libgphoto2-dev \\\n    libexiv2-dev \\\n    libfftw3-dev\n```\n\nThe following should install Rawstudio to `/tmp/rs-prefix/bin/rawstudio`:\n\n```bash\n$ ./autogen.sh --prefix=/tmp/rs-prefix\n$ make\n$ make install\n```\n","funding_links":[],"categories":["RAW image developers"],"sub_categories":["Sony"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frawstudio%2Frawstudio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frawstudio%2Frawstudio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frawstudio%2Frawstudio/lists"}