basically trying to remove corrupt, prematurely ending jpeg files from a collection. i figured if the end of file marker was absent then that meant the image is truncated and therefore i would consider it invalid for my purposes. is this method of checking sound? if so any ideas of how i could implement this in php?
cheers
try this:
This would load the entire JPG file into memory and can result into an error for big files.
Alternative:
I solved this problem with a try catch and a
@
in front of the function: