Is there a way to copy only a part of a file from a web address to the local working directory? I need to copy only the first page of a PDF to convert it into a PNG image.
Thanks in advance
|
feedback
|
Theoretically yes, there is a possibility to send But in your case it is not possible, you don't know how many bytes you need to get only first page and moreover there is very high possibility that you can not open/read from incomplete file. | |||
|
feedback
|
|
You can copy part of a file over HTTP using Assuming you know how to parse a raw PDF, you could roll your own HTTP request procedure using But there is no provision, in any protocol, for saying "only send me page 1". | |||
|
feedback
|