minettiandrea / scala-thumbnailer   0.7.2

GNU General Public License v2.0 only Website GitHub

:volcano: Library to generate file thumbnails in Scala

Scala versions: 2.13 2.12

A Scala library for generating thumbnails.

The API uses streams rather than files. Supports the following file types:

  • PDF
  • PNG, JPEG, GIF, BMP
  • DOCX
  • Plain text files

GPL v2.0

This fork exists to update the following versions:

  • Scala - v2.11 family
  • Apache PDFBox library dependency to the 2.x family
  • Typesafe Scala Logging to the 3.5.x family

No other code has changed.

Usage

Create

val defaultThumbnailer = new Thumbnailer
val thumbnailer = new Thumbnailer(new PDFThumbnailer, new TextThumbnailer)

Output to stream

val thumbnailer = new Thumbnailer
val input = new FileInputStream("input.pdf")
val output = new FileOutputStream("output.png", false)

thumbnailer.generateThumbnail(input, output, "application/pdf")

output.close
input.close

Output to byte array

val thumbnailer = new Thumbnailer
val input = new FileInputStream("input.pdf")

val bytes: Array[Byte] = thumbnailer.generateThumbnail(input, "application/pdf")

input.close

Options

val thumbnailer = new Thumbnailer
thumbnailer.setSize(100, 200)
thumbnailer.setShouldPadThumbnail(false)

Dependency Management

SBT

libraryDependencies += "nz.co.rossphillips" % "scala-thumbnailer" % "0.4.0"

Maven

<dependency>
	<groupId>nz.co.rossphillips</groupId>
	<artifactId>scala-thumbnailer</artifactId>
	<version>0.4.0</version>
</dependency>

Homepage

Originally inspired by java-thumbnailer.