I was having issues getting a xtc to open on my crosspoint X4 device.
Had to turn to AI - I was getting error 'Page Load Error' on the device, but debugging the file out into PDF - I could tell they were generated correctly.
AI tells me that the header version is incorrect for newer crosspoint version (1.0?) - I had to replace the header. Commands pasted below
##CONVERT
xtctool convert book.pdf -o book.xtc
##DEBUG CONVERT
xtctool convert book.xtc -o ./debug/debug.png
##FIX HEADER (PAGE ERROR ON DEVICE)
cp book.xtc book.xtch
printf '\x58\x54\x43\x48' |
dd of=../book.xtch bs=1 seek=0 count=4 conv=notrunc status=none
Thanks for the great tool
I was having issues getting a xtc to open on my crosspoint X4 device.
Had to turn to AI - I was getting error 'Page Load Error' on the device, but debugging the file out into PDF - I could tell they were generated correctly.
AI tells me that the header version is incorrect for newer crosspoint version (1.0?) - I had to replace the header. Commands pasted below
##CONVERT
xtctool convert book.pdf -o book.xtc
##DEBUG CONVERT
xtctool convert book.xtc -o ./debug/debug.png
##FIX HEADER (PAGE ERROR ON DEVICE)
cp book.xtc book.xtch
printf '\x58\x54\x43\x48' |
dd of=../book.xtch bs=1 seek=0 count=4 conv=notrunc status=none
Thanks for the great tool