I just found the answer myself:
spark.read.format("com.crealytics.spark.excel") \
.option("header", "true") \
.option("maxByteArraySize", 200000000) \ # that's the solution!
.schema(input_schema) \
.load(path) \
.display()