Hi,
Again thanks, this works perfectly.
For the sake of others this is the code...
for chunk in doc.chunks:
for camera in chunk.cameras:
if camera.enabled:
newcams.append(camera)
task = Metashape.Tasks.ConvertImages()
task.cameras = newcams
task.path = "C:/myData/myImages/{filename}.jpg"
task.remove_distortions = True
task.update_gps_tags = True
task.fix_principal_point = True
task.fix_pixel_aspect = True
task.apply(chunk)
Again thanks for the support, appreciated.
Scott.