You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pitfall/png.rkt

127 lines
4.7 KiB
Racket

6 years ago
#lang debug racket/base
(require "racket.rkt")
(require "png-reader.rkt" "zlib.rkt")
(provide PNG)
(define-subclass object% (PNG data [label #f])
6 years ago
(field [image (read-png data)] ; `image` is a hash
[pixelBitlength (· image pixelBitlength)]
[width (· image width)]
[height (· image height)]
[imgData (· image imgData)]
[document #f]
[alphaChannel #f]
7 years ago
[obj #f])
(as-methods
embed
splitAlphaChannel))
(define/contract (embed this doc-in)
(object? . ->m . void?)
7 years ago
(set-field! document this doc-in)
(unless (· this obj)
(set-field! obj this
7 years ago
(send doc-in ref
(mhash 'Type "XObject"
'Subtype "Image"
'BitsPerComponent (· this image bits)
'Width (· this width)
'Height (· this height)
'Filter "FlateDecode")))
(unless (· this image hasAlphaChannel)
7 years ago
(define params (send doc-in ref (mhash 'Predictor 15
'Colors (· this image colors)
'BitsPerComponent (· this image bits)
'Columns (· this width))))
(hash-set! (· this obj payload) 'DecodeParms params)
(send params end))
(cond
[(hash-ref (· this image) 'palette #f)
;; embed the color palette in the PDF as an object stream
7 years ago
(define palette-ref (· doc-in ref))
(send palette-ref end (· this image palette))
;; build the color space array for the image
(hash-set! (· this object payload) 'Colorspace
(list "Indexed" "DeviceRGB" (sub1 (bytes-length (· this image palette))) palette-ref))]
[else (hash-set! (· this obj payload) 'ColorSpace "DeviceRGB")])
7 years ago
(cond
[(hash-ref (· this image) 'transparency #f)
(cond
[(hash-ref (hash-ref (· this image) 'transparency) 'grayscale #f)
7 years ago
(error 'transparency-grayscale-not-implemented)]
[(hash-ref (hash-ref (· this image) 'transparency) 'rgb #f)
7 years ago
(error 'transparency-rgb-not-implemented)]
[(hash-ref (hash-ref (· this image) 'transparency) 'indexed #f)
7 years ago
(error 'transparency-indexed-not-implemented)])]
[(hash-ref (· this image) 'hasAlphaChannel #f)
;; For PNG color types 4 and 6, the transparency data is stored as a alpha
;; channel mixed in with the main image data. Separate this data out into an
;; SMask object and store it separately in the PDF.]
7 years ago
(· this splitAlphaChannel)]))
(when (· this alphaChannel)
(define sMask
(send (· this document) ref
(mhash 'Type "XObject"
'Subtype "Image"
'Height (· this height)
7 years ago
'Width (· this width)
'BitsPerComponent 8
'Filter "FlateDecode"
'ColorSpace "DeviceGray"
'Decode '(0 1))))
(send sMask end (· this alphaChannel))
(hash-set! (· this obj payload) 'SMask sMask))
;; embed the actual image data
(send (· this obj) end (· this imgData)))
6 years ago
(require sugar/debug racket/draw)
6 years ago
;; todo: this function is too slow.
;; switch to draw/unsafe/png
(define/contract (splitAlphaChannel this)
(->m void?)
6 years ago
7 years ago
(define pixels
6 years ago
(let ()
(define ip (· this data))
(port-position ip 0)
(define bmap (read-bitmap ip 'png/alpha))
(define bs (make-bytes (* 4 (· this width) (· this height))))
(send bmap get-argb-pixels 0 0 (· this width) (· this height) bs)
bs
#;(decodePixels (· this imgData) (· this pixelBitlength) (· this width) (· this height))))
#;(report 'unpacking-argb)
7 years ago
(define-values (imgBytes alphaBytes)
6 years ago
(parameterize ([current-input-port (open-input-bytes pixels)])
(for/fold ([img-bytes empty]
[alpha-bytes empty]
#:result (values (apply bytes-append (reverse img-bytes))
(apply bytes-append (reverse alpha-bytes))))
([i (in-naturals)]
#:break (eof-object? (peek-byte)))
(if (even? i)
(values img-bytes (cons (read-bytes 1) alpha-bytes))
(values (cons (read-bytes 3) img-bytes) alpha-bytes)))))
7 years ago
6 years ago
#;(report 'deflate-imgBytes)
(set-field! imgData this (deflate imgBytes))
#;(report 'deflate-alphaBytes)
(set-field! alphaChannel this (deflate alphaBytes)))
7 years ago
6 years ago
;; test files
;; http://www.libpng.org/pub/png/png-sitemap.html#images
(module+ test
6 years ago
(define pic (make-object PNG (open-input-file "../ptest/assets/death-alpha.png")))
6 years ago
(splitAlphaChannel pic))