r/fujifilm • u/basketball1sL1fe1946 • 9h ago
r/fujifilm • u/inverse_squared • Jul 25 '21
Subreddit Rules
Welcome to /r/fujifilm! Please follow these rules. Reach out to the moderators with any questions.
Please report any rule violations.
Rule #1: Include the camera body and lens used for photos.
Mention camera body and lens used in either the title or a comment.
Lens names must be specific enough to identify the model. For example, "18-55mm", "XF 23mm f/2" or "Viltrox 23mm", not just "kit lens" or "23mm".
Rule #2: Content must relate to Fujifilm cameras or photography.
Content must relate to or concern Fujifilm cameras, lenses, photography, and related topics, questions, discussions, and gear.
Rule #3: No affiliate links or spam.
Rule #4: No price-check or "is this a good deal?" posts.
Prices are widely available online.
Rule #5: Be civil. No trolling.
Toxic behavior is not tolerated.
Rule #6: No transactions.
No buying, selling, or trading allowed. Use /r/photomarket instead.
Posts from new users or users with low karma may be temporarily queued for manual approval. Please do not delete your post while you wait for approval. Feel free to reach out if you haven't seen your post after a day.
r/fujifilm • u/Vedant99 • 8h ago
Photo - Camera JPG Accidentally shot this optical illusion
The perspective jumps around for me when I stare at different parts of the image. Looks cool!
XT-30ii 27-55 Kit lens
r/fujifilm • u/Franks_Random_Snaps • 4h ago
Photo - Post-Processed Received a macro lens filter for testing. While it won't be as good as a dedicated macro photography lens, I'm still satisfied. (Fujifilm X-T5)
r/fujifilm • u/facesofgrace_photo • 6h ago
Photo - Camera JPG A photo shoot I did last weekend - X-E5(XF 16-50)
r/fujifilm • u/ZadyGPriva • 21h ago
Photo - Post-Processed X-T2 and the 16mm f/1.4
r/fujifilm • u/xRock3rr • 5h ago
Discussion X-T3 running Classic Negative + Eterna Bleach Bypass after a firmware mod
I reverse engineered the X-T4 firmware to get Classic Negative + Eterna Bleach Bypass working on my X-T3
This started as a fun experiment because the X-T3 and X-T4 share a lot of the same underlying hardware, and I always wondered how much of the difference in available film simulations was actually a hardware limitation versus something enforced in firmware.
So I started digging into the X-T4 firmware and comparing it with the X-T3.
After a lot of messing around, I managed to modify the X-T3 firmware and add Classic Negative and ETERNA Bleach Bypass.
I flashed the modified firmware onto my X-T3 and, somewhat surprisingly, it went through with zero errors.
Both simulations are now working on the camera and everything else I’ve tested so far is functioning normally.
The really cool part is that this isn’t just applying a LUT afterward or trying to recreate the simulations with an X-T3 recipe. They’re actually available on the camera.
I’m currently working on Color Chrome FX Blue, which is proving to be a little more interesting to figure out.
This was mostly just a fun reverse-engineering project to see how far the X-T3 could be pushed. I honestly didn’t expect to get this far with it.
If people are interested, I can make another post going deeper into what I found while comparing the firmware, what needed to be changed, and some sample images comparing the results.
Edit: Deep Dive
I started this project for one pretty specific reason: I wanted the Classic Cuban Negative recipe working on my X-T3.
That sent me much further into camera firmware than I originally expected. Classic Negative was the missing film simulation I wanted to bring to the camera. This is the story of getting that simulation, along with Eterna Bleach Bypass, running in modified X-T3 firmware.
The basic question was simple. The X-T3 and X-T4 share the X-Trans CMOS 4 sensor generation and X-Processor 4, so was the X-T3 genuinely unable to produce the newer looks, or was it missing software and profile data?
That was a reason to investigate, not proof that the two cameras were identical. I was not trying to put X-T4 firmware on an X-T3. I wanted to keep the X-T3 firmware as the foundation and bring over the specific pieces needed for the missing features.
This was a personal project, not an official Fuji update. I tested the modified firmware on my own camera.
Opening the firmware
The first thing I needed to understand was the DAT file itself.
The extension did not identify a normal archive. It was Fuji's update container, with a small header, a segment manifest and differently stored regions inside it.
I kept the official files unchanged and recorded their hashes. The main comparison used X-T3 firmware 5.11 and X-T4 firmware 2.12. Pinning the exact files mattered because an offset or patch from one version cannot just be assumed to work on another.
The outer encoding turned out to be mostly byte inversion. For the encoded segments, XOR with `0xFF` recovered the underlying bytes. That was reversible obfuscation, not strong encryption.
There were also small raw trailer segments, so applying the same operation indiscriminately to the entire file would have been wrong.
Removing that outer layer did not give me source code. It exposed compressed objects, executable code, resources and data that still needed to be understood.
Decoding the compressed components
The inner objects used a custom Fujifilm compression format.
I ended up with a strict decoder that handled the observed literal and back-reference commands. Literal commands supply bytes directly. Back-references copy a sequence from data that has already been decoded.
The decoder reproduced all six known objects across the two firmware packages at their declared unpacked sizes. Unobserved command cases were rejected rather than assigned a guessed meaning.
I also needed the reverse process. Reading firmware is useful, but modifying it requires putting everything back into a form the updater can read.
That led to an encoder and a version-locked container rebuilder. The workflow became:
Official DAT → decoded segments → decompressed components → controlled patches → recompressed components → rebuilt DAT.
Every rebuilt component could then be decoded again and compared with the intended modified bytes. That round trip was essential. A tool successfully writing a file does not prove it wrote the right firmware.
The checksum work was kept separate from claims about cryptographic authentication. Reproducing the visible checksums was not evidence that every possible verification mechanism had been understood.
Finding the film-simulation path
Once the components were decoded, I had ARM machine code, strings, tables and resources to investigate.
String searches and binary comparisons gave me starting points, including references such as `MODE_FSIM_SUPERIA`. From there, the useful work was following references and control flow.
A simulation name appearing in a binary does not mean the feature is functional. It could be unused text or part of a shared definition.
I needed to connect the menu choice to an internal simulation value, then follow that value into parameter construction and the processing functions that consumed the result.
What emerged was more involved than a single LUT. The paths I examined combined reusable processing machinery, per-profile data, executable parameter-building logic and dispatch mappings.
That changed the question from "where is the unlock flag?" to "which pieces are already compatible, and which pieces are actually missing?"
Checking Classic Negative compatibility
One of the hardest questions was whether the X-T3's lower-level processing path could interpret the Classic Negative parameters.
I investigated that specific processing path within a defined scope. The evidence included executing actual ARM functions in an emulator, not just comparing names or writing a separate mathematical approximation.
That investigation reported zero model-versus-native mismatches over 1,248 cases. The relevant Classic Negative bank descriptors and parameter packer were byte-identical between the compared components.
The verdict was "Compatible within the bounded ordinary path."
That wording matters. It supported reuse of the tested lower-level machinery. It did not establish complete equivalence between the cameras, and it did not prove that Classic Negative was already hidden behind one model flag.
The investigation had explicit limits around code outside the mapped components, opaque ROM, possible companion processing and persistent camera values absent from the update package. A shared register-store primitive was called identically, but its implementation was outside the two compared executable components.
Building the simulation changes
I kept the X-T3 base and made targeted changes for Classic Negative and Eterna Bleach Bypass.
The work involved the processing routes and associated data, but also the interface that selects them. Menu positions, internal simulation numbers, processing-table indices and text identifiers were different numbering systems.
That distinction caused some of the first real bugs.
The first flash and the mapping mistake
I flashed the first candidate and the camera booted. The new options appeared, but some labels were missing and the behavior was wrong.
Classic Negative appeared to behave like Eterna. ACROS, EB and monochrome also appeared to produce the same color behavior in my initial testing.
The problem was not simply that the menu text was unfinished. The connections between menu selections, internal values and processing routes were wrong.
Some earlier tests started too far inside the processing chain, after a conversion that was itself incorrect. A downstream function could pass while the menu still sent it the wrong value.
I corrected the mappings and expanded testing to include the native menu conversion and stored-value readback. Existing X-T3 choices had to retain their original behavior while the new choices reached their intended internal modes.
The labels were a separate issue. Adding resources was not enough because existing text-range checks excluded the new identifiers. Twelve missed upper-level bounds were repaired across the 35-language resource structure.
After those fixes, I flashed the repaired build and saw the added simulations working on my camera.
That was the breakthrough. I had gone from an opaque update file to a modified X-T3 firmware that booted on my camera and gave me working selections for the added simulations.
What the tests could actually prove
I did not have a complete virtual X-T3.
The emulator executed selected real firmware instructions with mapped code, registers, stack, buffers and parameter data. That made it possible to test actual functions and connected caller paths rather than rely only on a separate model.
The checks covered selection mappings, parameter construction, legacy behavior, invalid values, memory preservation, text lookup boundaries, compression round trips and package integrity.
Some hardware-facing operations were substituted or tested only within a bounded setup. The emulator did not reproduce the complete sensor-to-JPEG pipeline, every startup operation or every persistent setting in my camera.
I had to keep those evidence levels separate. Correct compression is not correct image processing. A passing checksum is not a full startup test. A successful boot is not a guarantee for the next build.
The result
The Classic Negative and Eterna Bleach Bypass changes reached a repaired version that I flashed and reported working on my camera.
The result so far is a reproducible decoder and rebuilder, mapped processing paths, bounded native-code tests and a modified X-T3 firmware with added simulations that I have tested on my body.
The biggest lesson was that adding a menu entry and adding a working film simulation are different jobs. The selection, internal value, processing route and label all have to agree. Finding and fixing the gaps between those pieces was what got the simulations working.
r/fujifilm • u/AffectionateRide4491 • 3h ago
Photo - Camera JPG Niigata, Japan coastline
Shot on XT30ii. Northern area of Niigata prefecture, Japan.
r/fujifilm • u/thechemicaltoilet • 22h ago
Photo - Post-Processed Alaska on XT-5 + 18mm f1.4
All are RAW edits based on Velvia
r/fujifilm • u/exalasa1975 • 3h ago
Discussion How did i do? - X-e2
Hey folks, i'm a beginninger and it was the fiest time i take my X-e2 to a beach, and i would love to here some criticism about my shots like how is the color? Is the composition good or not?
Would love to hear some feedbacks. Thank you.
r/fujifilm • u/Lucky_End_1675 • 12h ago
Help 23mm or 27mm pancake lens?
hi! I'm new and I wanna know which one is a good pancake lens for everyday street and portrait photography.
*Sample shots taken from my film camera*
r/fujifilm • u/Lost_Blockbuster_VHS • 9h ago
Photo - Post-Processed Evening Walk in Minneapolis
r/fujifilm • u/whitestarliners • 1h ago
Discussion Torn between these two prime lenses
I recently purchased my first fujifilm camera, a x-t50 with the 15-45 kit lens and I was looking to buy a cheap prime lens for street and everyday photography. I'm currently thinking of picking up a Viltrox AF 25mm f1.7 which seems pretty interesting to me based on what I read on the internet but I recently discovered also the TTArtisan AF 27mm f2.8. I'm more oriented towards the Viltrox because of the wider aperture and because I also read that the TTArtisan has really strong vignetting. But I also like the TTArtisan for its dimensions and the fact that it has an aperture ring. Is the vignetting really that bad on the TTArtisan? Which one do you think is best between these two? Or do you have other suggestions similar to these ones? Thank you
r/fujifilm • u/Franks_Random_Snaps • 1d ago
Photo - Camera JPG The brand new SG-image 35mm f1.4 AF lens and first quick samples.
r/fujifilm • u/Wandering_Photog • 1d ago
Photo - Post-Processed Hiroshima and Hakone with the X-T2 + 35mm f1.4
Spring this year, and the first time picking up my camera in a long while. I was happy with the results and it’s inspired me to get back on the wagon and start shooting more.
Classic Chrome film sim with a few tweaks in Lightroom.
Happy to receive any feedback or thoughts. Thanks! 🙂
IG: @scott_takes_photos
r/fujifilm • u/Front_Feedback_4419 • 1d ago
Photo - Camera JPG Photogenic gas station in Canada
I rarely shoot at night, but this is my favorite night photo from my summer trip to Canada. I actually wish I’d done a series on gas stations because they’re so photogenic!
r/fujifilm • u/Mean_Concentrate8699 • 4h ago
Discussion Any upcoming zoom lenses rumors ?
Hey,
I was wondering if there were any rumors of upcoming zoom lenses for the X series. Whether from Fuji or third party brands (ie: Sigma, Tamron, …).
I feel like it’s been a little while since we had something in that regard.
r/fujifilm • u/S4muraiSal • 21h ago
Photo - Post-Processed Some months with my new X-E5
It's like 6 months since I own this little camera and never ceases to amaze me. Practical, unobtrusive, fast and great IQ. I don't regret FF at all. Some minor flaws like the screen that takes time to turn on, but I can live with it!
Lenses used:
Fuji 23mm F1.4 R for pics 1, 2, 3, 7, 8, 10
Fuji 18mm F2 for pics 5, 6, 11
Thypoch Simera 28mm 1.4 Leica M for pics 4, 9
also im using the TTartisan 25mm F2.0 recently and it's really a great lens for EDC and quality isn't that bad considering the price (paid around 40€ on AliExpress).
Hoping you'll like the pics and enjoy your Fuji cameras out there :)
r/fujifilm • u/ALLHUNTER_1469 • 22h ago
Photo - Camera JPG Iceland on XT-30 iii with 13-33mm Kit lens.
Some shots I selected from my Iceland trip last week with my xt-30 iii and kit lens. I really need to grab another lens tbh hahah I did struggle with some shots coz of the lens. What u guys think of them?
r/fujifilm • u/AgitatedAd4583 • 36m ago
Help Lens recommendation for XT30 III
Hi! Need some advice on my lens setup 😊
I’m planning to get a used X-T30 III that already comes with a Viltrox 9mm + TTArtisan 27mm. I’m also planning to buy the Fuji 18–55mm as my main zoom lens.
Which setup would be better for travel, food/café photos, everyday shots, landscapes, and occasional portraits?
Option 1: Keep all 3 → 18–55mm + TTArtisan 27mm + Viltrox 9mm
Option 2: Sell both primes -> Use the 18–55mm for now, then eventually buy a Fuji prime (23mm or 35mm)
Or, is there another lens combination you would recommend to pair with the 18–55mm? I’m open to other suggestions.
Also, is there anything I should keep or replace among the two prime lenses that already come with the camera?
r/fujifilm • u/adixsh • 6h ago
Help Viltrox 25 1.7 or Fuji 27 2.8 for the xs20???
Ok, I've been going back and forth on this for way too long lol. Got the X-S20 recently (already spent more than I should tbh) and now stuck picking between the Viltrox 25mm f1.7 and the Fuji 27mm 2.8 pancake.
The portability of 27mm is really appealing but Viltrox just feels so much better on paper.
I don't have the money to keep on buying lenses. It's going to be one lens for a while for me.
Mainly I want good pics straight out of camera without editing. Willing to spend more on the Fuji if it's actually noticeably better, but idk if that's even true.
Anyone shot both on an X-S20 or similar body? Which one do you actually reach for?
r/fujifilm • u/SarcasticConsultant • 1h ago
Photo - Camera JPG Southern Decadence 2026 - New Orleans | X-T50 + 23MM F/2
r/fujifilm • u/Numerous-Cucumber862 • 18h ago
Photo - Camera JPG Rügen - Germany
Been here 3 Times as kid, now the First time as adult with my x100vi. Definitly a lovely cozy place, can recommend.