File: control

package info (click to toggle)
golang-github-nfnt-resize 0.0~git20160724.0.891127d-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 152 kB
  • ctags: 113
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Source: golang-github-nfnt-resize
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Alexandre Viau <aviau@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go
Standards-Version: 3.9.8
Homepage: https://github.com/nfnt/resize
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-nfnt-resize.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-nfnt-resize.git
XS-Go-Import-Path: github.com/nfnt/resize

Package: golang-github-nfnt-resize-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go
Description: Pure golang image resizing
 The resize package provides 2 functions:
 - resize.Resize creates a scaled image with new dimensions
   (width, height) using the interpolation function interp.
   If either width or height is set to 0, it will be set to
   an aspect ratio preserving value.
 - resize.Thumbnail downscales an image preserving its aspect
   ratio to the maximum dimensions (maxWidth, maxHeight).  It
   will return the original image if original sizes are smaller
   than the provided dimensions.