Error when trying to resample a SAR image

I have a SAR (from TerraSAR-X) image that I’ve calibrated, Terrain-Corrected, and converted to dB from the command-line with gpt.

For experimental purposes of an algorithm I’m working on, I’ve tried to resample the resulting preprocessed SAR image (in GeoTIFF format) above, using the operation found in the menu Raster > Geometric Operations > Resampling

But I’m getting the error below (the input image is definitely non-empty):

java.lang.IllegalArgumentException: The specified dimensional parameter is non-positive.
        at javax.media.jai.ImageLayout.setWidth(ImageLayout.java:411)
        at javax.media.jai.ImageLayout.<init>(ImageLayout.java:154)
        at org.esa.snap.core.image.ImageManager.createSingleBandedImageLayout(ImageManager.java:203)
        at org.esa.snap.core.gpf.common.resample.ResamplingOp$4.createImage(ResamplingOp.java:515)
        at com.bc.ceres.glevel.support.AbstractMultiLevelSource.getImage(AbstractMultiLevelSource.java:65)
        at com.bc.ceres.glevel.support.DefaultMultiLevelImage.<init>(DefaultMultiLevelImage.java:45)
        at org.esa.snap.core.gpf.common.resample.ResamplingOp.createAggregatedImage(ResamplingOp.java:544)
        at org.esa.snap.core.gpf.common.resample.ResamplingOp.resampleBands(ResamplingOp.java:357)
        at org.esa.snap.core.gpf.common.resample.ResamplingOp.initialize(ResamplingOp.java:148)
        at org.esa.snap.core.gpf.internal.OperatorContext.initializeOperator(OperatorContext.java:486)
        at org.esa.snap.core.gpf.internal.OperatorContext.getTargetProduct(OperatorContext.java:273)
        at org.esa.snap.core.gpf.Operator.getTargetProduct(Operator.java:387)
        at org.esa.snap.core.gpf.graph.NodeContext.initTargetProduct(NodeContext.java:77)
        at org.esa.snap.core.gpf.graph.GraphContext.initNodeContext(GraphContext.java:195)
        at org.esa.snap.core.gpf.graph.GraphContext.initNodeContext(GraphContext.java:178)
        at org.esa.snap.core.gpf.graph.GraphContext.initOutput(GraphContext.java:162)
        at org.esa.snap.core.gpf.graph.GraphContext.<init>(GraphContext.java:91)
        at org.esa.snap.core.gpf.graph.GraphContext.<init>(GraphContext.java:64)
        at org.esa.snap.core.gpf.graph.GraphProcessor.executeGraph(GraphProcessor.java:128)
        at org.esa.snap.core.gpf.main.DefaultCommandLineContext.executeGraph(DefaultCommandLineContext.java:86)
        at org.esa.snap.core.gpf.main.CommandLineTool.executeGraph(CommandLineTool.java:534)
        at org.esa.snap.core.gpf.main.CommandLineTool.runGraph(CommandLineTool.java:388)
        at org.esa.snap.core.gpf.main.CommandLineTool.runGraphOrOperator(CommandLineTool.java:287)
        at org.esa.snap.core.gpf.main.CommandLineTool.run(CommandLineTool.java:188)
        at org.esa.snap.core.gpf.main.CommandLineTool.run(CommandLineTool.java:121)
        at org.esa.snap.core.gpf.main.GPT.run(GPT.java:54)
        at org.esa.snap.core.gpf.main.GPT.main(GPT.java:34)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.esa.snap.runtime.Launcher.lambda$run$14(Launcher.java:55)
        at org.esa.snap.runtime.Engine.runClientCode(Engine.java:189)
        at org.esa.snap.runtime.Launcher.run(Launcher.java:51)
        at org.esa.snap.runtime.Launcher.main(Launcher.java:31)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at com.exe4j.runtime.LauncherEngine.launch(LauncherEngine.java:62)
        at com.exe4j.runtime.WinLauncher.main(WinLauncher.java:101)
        at com.install4j.runtime.launcher.WinLauncher.main(WinLauncher.java:16)

Error: The specified dimensional parameter is non-positive.

Anyone has an idea what this means?

What are your resampling parameters?
Could it be that you accidentally used a very high resolution?
This might lead to a negative width if the width would exceed 2147483647 pixels

Is multi-looking an option instead of resampling?