The PDF internal structure has been analyzed.
A stream with a single filter works fine.
But in the case of multiple filters as shown below, which one should be turned off first?
I don't know how to turn it off.
The header is broken due to an encoding (or decoding) problem, or it is not resolved as desired.
[/ASCIIHexDecode /FlateDecode]
According to the PDF specification ISO 32000-2:2020, the filters shall be applied in the order in which they occur in that array:
(Table 5 — Entries common to all stream dictionaries)
In case of your example, therefore,
you first have to ASCIIHexDecode the content - i.e. the hex digits in the stream shall be pairwise converted to bytes - and then FlateDecode those bytes.
In a comment you asked
Filters can be configured by parameters in the DecodeParms value:
(Table 5 — Entries common to all stream dictionaries)