Nikon Z8 Raw files not readable by ventura

The first day I went out photos worked and were readable in photos and the mac. Photos and the mac don't read the Nikon Z8 RAW files after I rest all all adjustments on my Z8. I called Nikon and they say the Z8 is not supported by ventura. It worked at one point. I don't get it. Anybody have any thougfhts?

iMac 27″ 5K, macOS 13.7

Posted on Mar 3, 2025 6:01 AM

Reply
20 replies
Sort By: 

Mar 4, 2025 6:54 AM in response to Servant of Cats

Servant of Cats wrote:


VikingOSX wrote:

This site has Nikon Z8 NEF Lossless Compressed and these show up in the Finder.

In general, you can't assume that Raw formats are identical, even when two files have the same file extension and come from cameras made by the same manufacturer.

How ungodly obvious…



But maybe here, the Z8 NEF Lossless Compressed format is the same as a previous format – or close enough that code written for the older format doesn't get too confused.

There is a Nikon Z8⁴ footnote in Apple's Raw Support documentation that specifies the Lossless format only for this camera. That is why a Z8 lossless compression image displays in macOS and one with Z8 High Efficiency* compression does not. Nothing to do with the format age.

Reply

Mar 3, 2025 9:18 PM in response to VikingOSX

VikingOSX wrote:

This site has Nikon Z8 NEF Lossless Compressed and these show up in the Finder.


In general, you can't assume that Raw formats are identical, even when two files have the same file extension and come from cameras made by the same manufacturer.


But maybe here, the Z8 NEF Lossless Compressed format is the same as a previous format – or close enough that code written for the older format doesn't get too confused.

Reply

Mar 3, 2025 8:49 AM in response to Lois Erlacher

Here is an AppleScript that depends upon the free, third-party EXIFtool utility to extract a JPG image (with EXIF metadata) from a camera raw image, whether that camera model is supported or unsupported by the operating system.


Whether Apple Silicon or Intel Mac, the ExifTool installer places the executable in /usr/local/bin/exiftool as the script indicates.


Once EXIFTool is installed, one performs a shift+cmd+U in the Finder, and then double click the Script Editor found there to launch it. Click New Document and select Desktop since it is handy.


Copy the following code into the Script Editor, click the hammer icon, and then run it, where it will only look for camera raw type files in the File Chooser.


(*
 raw2jpg.applescript
 
 Extract the JPG image with EXIF data from the camera RAW content into the same filesystem
 location. The original RAW image remains unchanged. Output file will have the RAW
 extension appended to the base filename such as DSC_4313.NEF => DSC_4313_NEF.jpg.
 
 Version: 1
 Requirement: EXIFTool, https://exiftool.org
 Tested: macOS Sequoia v15.3.1, Nikon Z8 Raw Image (NEF)
 VikingOSX, 2025-03-03, Apple Support Communities, no warranties expressed or implied
 *)

use scripting additions


set thisImage to POSIX path of (choose file of type {"public.camera-raw-image"} default location (path to desktop)) as text

my makeRawAsJPG(thisImage)
return

on makeRawAsJPG(image)
	try
		return (do shell script "/bin/zsh -s <<'EOF' - " & image's quoted form & " >& /dev/null" & "
#!/bin/zsh
/usr/local/bin/exiftool -m -q -if '$jpgfromraw' -b -jpgfromraw -w %d%f_%ue.jpg \\
-execute -if '$previewimage' -b -previewimage -w %d%f_%ue.jpg \\
-execute -tagsfromfile @ -srcfile %d%f_%ue.jpg -overwrite_original \\
-common_args --ext jpg \"${1}\"
exit 0
EOF")
	end try
end makeRawAsJPG


Reply

Mar 3, 2025 9:14 PM in response to Lois Erlacher

Lois Erlacher wrote:

I like apple photos app. I was hoping they would support it. I don't want to downgrade to shooting jpeg just to use apple photos


You might be able to use the Adobe Digital Negative Converter to prepare .DNG versions of the Z8 Raw files, and then import the DNG files into Photos. I believe there are settings within the DNG converter as to what version of DNG to use for the output.


The question then might be what information / features, if any, is lost in the conversion.

Reply

Nikon Z8 Raw files not readable by ventura

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.