You can convert PDF to image, than save to .TIFF.
I'm using *JAI Image I/O Tools Core. You can use this to write .tiff
format.*

Example:

PDFRenderer render = new PDFRenderer(document);
BufferedImage image = render.renderImage(pageIndex, scale, ImageType.ARGB);

ImageIO.write(image, "tiff", new File(path));


2016-08-19 10:43 GMT-03:00 Arora, Abhishek <[email protected]>:

> Classification: Internal
> Hi
>
> First of all thank you very much to given time to read this email.
>
> I am trying to convert .PDF into .tiff. I didn't find any particular
> method which does this. I am using PDFBox version 2.0.
>
> Can you please tell me if this conversion is  supported by PDFBox 2.0
> version?
>
> If yes how can I implement.?
>
> Thanks,
> Abhishek
>
>
> This message and any attachments may contain confidential or privileged
> information and are intended only for the use of the intended recipients of
> this message. If you are not the intended recipient of this message, please
> notify the sender by return email, and delete this and all copies of this
> message and any attachments from your system. Any unauthorized disclosure,
> use, distribution, or reproduction of this message or any attachments is
> prohibited and may be unlawful.
>

Reply via email to