mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-27 13:48:51 +08:00

Refactored PdfObjectString into a struct with bool flag for hex. Fixed any code broken by the change. Unexported non-essential functions for crypto (not used by model). Can unexport more later or refactor to internal package.
448 lines
13 KiB
Go
448 lines
13 KiB
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
package contentstream
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/unidoc/unidoc/common"
|
|
"github.com/unidoc/unidoc/pdf/core"
|
|
"github.com/unidoc/unidoc/pdf/model"
|
|
)
|
|
|
|
// A representation of an inline image in a Content stream. Everything between the BI and EI operands.
|
|
// ContentStreamInlineImage implements the core.PdfObject interface although strictly it is not a PDF object.
|
|
type ContentStreamInlineImage struct {
|
|
BitsPerComponent core.PdfObject
|
|
ColorSpace core.PdfObject
|
|
Decode core.PdfObject
|
|
DecodeParms core.PdfObject
|
|
Filter core.PdfObject
|
|
Height core.PdfObject
|
|
ImageMask core.PdfObject
|
|
Intent core.PdfObject
|
|
Interpolate core.PdfObject
|
|
Width core.PdfObject
|
|
stream []byte
|
|
}
|
|
|
|
// Make a new content stream inline image object from an image.
|
|
func NewInlineImageFromImage(img model.Image, encoder core.StreamEncoder) (*ContentStreamInlineImage, error) {
|
|
if encoder == nil {
|
|
encoder = core.NewRawEncoder()
|
|
}
|
|
|
|
inlineImage := ContentStreamInlineImage{}
|
|
if img.ColorComponents == 1 {
|
|
inlineImage.ColorSpace = core.MakeName("G") // G short for DeviceGray
|
|
} else if img.ColorComponents == 3 {
|
|
inlineImage.ColorSpace = core.MakeName("RGB") // RGB short for DeviceRGB
|
|
} else if img.ColorComponents == 4 {
|
|
inlineImage.ColorSpace = core.MakeName("CMYK") // CMYK short for DeviceCMYK
|
|
} else {
|
|
common.Log.Debug("Invalid number of color components for inline image: %d", img.ColorComponents)
|
|
return nil, errors.New("Invalid number of color components")
|
|
}
|
|
inlineImage.BitsPerComponent = core.MakeInteger(img.BitsPerComponent)
|
|
inlineImage.Width = core.MakeInteger(img.Width)
|
|
inlineImage.Height = core.MakeInteger(img.Height)
|
|
|
|
encoded, err := encoder.EncodeBytes(img.Data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
inlineImage.stream = encoded
|
|
|
|
filterName := encoder.GetFilterName()
|
|
if filterName != core.StreamEncodingFilterNameRaw {
|
|
inlineImage.Filter = core.MakeName(filterName)
|
|
}
|
|
// XXX/FIXME: Add decode params?
|
|
|
|
return &inlineImage, nil
|
|
}
|
|
|
|
func (this *ContentStreamInlineImage) String() string {
|
|
s := fmt.Sprintf("InlineImage(len=%d)\n", len(this.stream))
|
|
if this.BitsPerComponent != nil {
|
|
s += "- BPC " + this.BitsPerComponent.DefaultWriteString() + "\n"
|
|
}
|
|
if this.ColorSpace != nil {
|
|
s += "- CS " + this.ColorSpace.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Decode != nil {
|
|
s += "- D " + this.Decode.DefaultWriteString() + "\n"
|
|
}
|
|
if this.DecodeParms != nil {
|
|
s += "- DP " + this.DecodeParms.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Filter != nil {
|
|
s += "- F " + this.Filter.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Height != nil {
|
|
s += "- H " + this.Height.DefaultWriteString() + "\n"
|
|
}
|
|
if this.ImageMask != nil {
|
|
s += "- IM " + this.ImageMask.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Intent != nil {
|
|
s += "- Intent " + this.Intent.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Interpolate != nil {
|
|
s += "- I " + this.Interpolate.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Width != nil {
|
|
s += "- W " + this.Width.DefaultWriteString() + "\n"
|
|
}
|
|
return s
|
|
}
|
|
|
|
func (this *ContentStreamInlineImage) DefaultWriteString() string {
|
|
var output bytes.Buffer
|
|
|
|
// We do not start with "BI" as that is the operand and is written out separately.
|
|
// Write out the parameters
|
|
s := ""
|
|
|
|
if this.BitsPerComponent != nil {
|
|
s += "/BPC " + this.BitsPerComponent.DefaultWriteString() + "\n"
|
|
}
|
|
if this.ColorSpace != nil {
|
|
s += "/CS " + this.ColorSpace.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Decode != nil {
|
|
s += "/D " + this.Decode.DefaultWriteString() + "\n"
|
|
}
|
|
if this.DecodeParms != nil {
|
|
s += "/DP " + this.DecodeParms.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Filter != nil {
|
|
s += "/F " + this.Filter.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Height != nil {
|
|
s += "/H " + this.Height.DefaultWriteString() + "\n"
|
|
}
|
|
if this.ImageMask != nil {
|
|
s += "/IM " + this.ImageMask.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Intent != nil {
|
|
s += "/Intent " + this.Intent.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Interpolate != nil {
|
|
s += "/I " + this.Interpolate.DefaultWriteString() + "\n"
|
|
}
|
|
if this.Width != nil {
|
|
s += "/W " + this.Width.DefaultWriteString() + "\n"
|
|
}
|
|
output.WriteString(s)
|
|
|
|
output.WriteString("ID ")
|
|
output.Write(this.stream)
|
|
output.WriteString("\nEI\n")
|
|
|
|
return output.String()
|
|
}
|
|
|
|
func (this *ContentStreamInlineImage) GetColorSpace(resources *model.PdfPageResources) (model.PdfColorspace, error) {
|
|
if this.ColorSpace == nil {
|
|
// Default.
|
|
common.Log.Debug("Inline image not having specified colorspace, assuming Gray")
|
|
return model.NewPdfColorspaceDeviceGray(), nil
|
|
}
|
|
|
|
// If is an array, then could be an indexed colorspace.
|
|
if arr, isArr := this.ColorSpace.(*core.PdfObjectArray); isArr {
|
|
return newIndexedColorspaceFromPdfObject(arr)
|
|
}
|
|
|
|
name, ok := this.ColorSpace.(*core.PdfObjectName)
|
|
if !ok {
|
|
common.Log.Debug("Error: Invalid object type (%T;%+v)", this.ColorSpace, this.ColorSpace)
|
|
return nil, errors.New("Type check error")
|
|
}
|
|
|
|
if *name == "G" || *name == "DeviceGray" {
|
|
return model.NewPdfColorspaceDeviceGray(), nil
|
|
} else if *name == "RGB" || *name == "DeviceRGB" {
|
|
return model.NewPdfColorspaceDeviceRGB(), nil
|
|
} else if *name == "CMYK" || *name == "DeviceCMYK" {
|
|
return model.NewPdfColorspaceDeviceCMYK(), nil
|
|
} else if *name == "I" {
|
|
return nil, errors.New("Unsupported Index colorspace")
|
|
} else {
|
|
if resources.ColorSpace == nil {
|
|
// Can also refer to a name in the PDF page resources...
|
|
common.Log.Debug("Error, unsupported inline image colorspace: %s", *name)
|
|
return nil, errors.New("Unknown colorspace")
|
|
}
|
|
|
|
cs, has := resources.ColorSpace.Colorspaces[string(*name)]
|
|
if !has {
|
|
// Can also refer to a name in the PDF page resources...
|
|
common.Log.Debug("Error, unsupported inline image colorspace: %s", *name)
|
|
return nil, errors.New("Unknown colorspace")
|
|
}
|
|
|
|
return cs, nil
|
|
}
|
|
|
|
}
|
|
|
|
func (this *ContentStreamInlineImage) GetEncoder() (core.StreamEncoder, error) {
|
|
return newEncoderFromInlineImage(this)
|
|
}
|
|
|
|
// Is a mask ?
|
|
// The image mask entry in the image dictionary specifies that the image data shall be used as a stencil
|
|
// mask for painting in the current color. The mask data is 1bpc, grayscale.
|
|
func (this *ContentStreamInlineImage) IsMask() (bool, error) {
|
|
if this.ImageMask != nil {
|
|
imMask, ok := this.ImageMask.(*core.PdfObjectBool)
|
|
if !ok {
|
|
common.Log.Debug("Image mask not a boolean")
|
|
return false, errors.New("Invalid object type")
|
|
}
|
|
|
|
return bool(*imMask), nil
|
|
} else {
|
|
return false, nil
|
|
}
|
|
|
|
}
|
|
|
|
// Export the inline image to Image which can be transformed or exported easily.
|
|
// Page resources are needed to look up colorspace information.
|
|
func (this *ContentStreamInlineImage) ToImage(resources *model.PdfPageResources) (*model.Image, error) {
|
|
// Decode the imaging data if encoded.
|
|
encoder, err := newEncoderFromInlineImage(this)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
common.Log.Trace("encoder: %+v %T", encoder, encoder)
|
|
common.Log.Trace("inline image: %+v", this)
|
|
|
|
decoded, err := encoder.DecodeBytes(this.stream)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
image := &model.Image{}
|
|
|
|
// Height.
|
|
if this.Height == nil {
|
|
return nil, errors.New("Height attribute missing")
|
|
}
|
|
height, ok := this.Height.(*core.PdfObjectInteger)
|
|
if !ok {
|
|
return nil, errors.New("Invalid height")
|
|
}
|
|
image.Height = int64(*height)
|
|
|
|
// Width.
|
|
if this.Width == nil {
|
|
return nil, errors.New("Width attribute missing")
|
|
}
|
|
width, ok := this.Width.(*core.PdfObjectInteger)
|
|
if !ok {
|
|
return nil, errors.New("Invalid width")
|
|
}
|
|
image.Width = int64(*width)
|
|
|
|
// Image mask?
|
|
isMask, err := this.IsMask()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if isMask {
|
|
// Masks are grayscale 1bpc.
|
|
image.BitsPerComponent = 1
|
|
image.ColorComponents = 1
|
|
} else {
|
|
// BPC.
|
|
if this.BitsPerComponent == nil {
|
|
common.Log.Debug("Inline Bits per component missing - assuming 8")
|
|
image.BitsPerComponent = 8
|
|
} else {
|
|
bpc, ok := this.BitsPerComponent.(*core.PdfObjectInteger)
|
|
if !ok {
|
|
common.Log.Debug("Error invalid bits per component value, type %T", this.BitsPerComponent)
|
|
return nil, errors.New("BPC Type error")
|
|
}
|
|
image.BitsPerComponent = int64(*bpc)
|
|
}
|
|
|
|
// Color components.
|
|
if this.ColorSpace != nil {
|
|
cs, err := this.GetColorSpace(resources)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
image.ColorComponents = cs.GetNumComponents()
|
|
} else {
|
|
// Default gray if not specified.
|
|
common.Log.Debug("Inline Image colorspace not specified - assuming 1 color component")
|
|
image.ColorComponents = 1
|
|
}
|
|
}
|
|
|
|
image.Data = decoded
|
|
|
|
return image, nil
|
|
}
|
|
|
|
// Parse an inline image from a content stream, both read its properties and binary data.
|
|
// When called, "BI" has already been read from the stream. This function
|
|
// finishes reading through "EI" and then returns the ContentStreamInlineImage.
|
|
func (this *ContentStreamParser) ParseInlineImage() (*ContentStreamInlineImage, error) {
|
|
// Reading parameters.
|
|
im := ContentStreamInlineImage{}
|
|
|
|
for {
|
|
this.skipSpaces()
|
|
obj, err, isOperand := this.parseObject()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !isOperand {
|
|
// Not an operand.. Read key value properties..
|
|
param, ok := obj.(*core.PdfObjectName)
|
|
if !ok {
|
|
common.Log.Debug("Invalid inline image property (expecting name) - %T", obj)
|
|
return nil, fmt.Errorf("Invalid inline image property (expecting name) - %T", obj)
|
|
}
|
|
|
|
valueObj, err, isOperand := this.parseObject()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if isOperand {
|
|
return nil, fmt.Errorf("Not expecting an operand")
|
|
}
|
|
|
|
if *param == "BPC" || *param == "BitsPerComponent" {
|
|
im.BitsPerComponent = valueObj
|
|
} else if *param == "CS" || *param == "ColorSpace" {
|
|
im.ColorSpace = valueObj
|
|
} else if *param == "D" || *param == "Decode" {
|
|
im.Decode = valueObj
|
|
} else if *param == "DP" || *param == "DecodeParms" {
|
|
im.DecodeParms = valueObj
|
|
} else if *param == "F" || *param == "Filter" {
|
|
im.Filter = valueObj
|
|
} else if *param == "H" || *param == "Height" {
|
|
im.Height = valueObj
|
|
} else if *param == "IM" {
|
|
im.ImageMask = valueObj
|
|
} else if *param == "Intent" {
|
|
im.Intent = valueObj
|
|
} else if *param == "I" {
|
|
im.Interpolate = valueObj
|
|
} else if *param == "W" || *param == "Width" {
|
|
im.Width = valueObj
|
|
} else {
|
|
return nil, fmt.Errorf("Unknown inline image parameter %s", *param)
|
|
}
|
|
}
|
|
|
|
if isOperand {
|
|
operand, ok := obj.(*core.PdfObjectString)
|
|
if !ok {
|
|
return nil, fmt.Errorf("Failed to read inline image - invalid operand")
|
|
}
|
|
|
|
if operand.Str() == "EI" {
|
|
// Image fully defined
|
|
common.Log.Trace("Inline image finished...")
|
|
return &im, nil
|
|
} else if operand.Str() == "ID" {
|
|
// Inline image data.
|
|
// Should get a single space (0x20) followed by the data and then EI.
|
|
common.Log.Trace("ID start")
|
|
|
|
// Skip the space if its there.
|
|
b, err := this.reader.Peek(1)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if core.IsWhiteSpace(b[0]) {
|
|
this.reader.Discard(1)
|
|
}
|
|
|
|
// Unfortunately there is no good way to know how many bytes to read since it
|
|
// depends on the Filter and encoding etc.
|
|
// Therefore we will simply read until we find "<ws>EI<ws>" where <ws> is whitespace
|
|
// although of course that could be a part of the data (even if unlikely).
|
|
im.stream = []byte{}
|
|
state := 0
|
|
var skipBytes []byte
|
|
for {
|
|
c, err := this.reader.ReadByte()
|
|
if err != nil {
|
|
common.Log.Debug("Unable to find end of image EI in inline image data")
|
|
return nil, err
|
|
}
|
|
|
|
if state == 0 {
|
|
if core.IsWhiteSpace(c) {
|
|
skipBytes = []byte{}
|
|
skipBytes = append(skipBytes, c)
|
|
state = 1
|
|
} else {
|
|
im.stream = append(im.stream, c)
|
|
}
|
|
} else if state == 1 {
|
|
skipBytes = append(skipBytes, c)
|
|
if c == 'E' {
|
|
state = 2
|
|
} else {
|
|
im.stream = append(im.stream, skipBytes...)
|
|
skipBytes = []byte{} // Clear.
|
|
// Need an extra check to decide if we fall back to state 0 or 1.
|
|
if core.IsWhiteSpace(c) {
|
|
state = 1
|
|
} else {
|
|
state = 0
|
|
}
|
|
}
|
|
} else if state == 2 {
|
|
skipBytes = append(skipBytes, c)
|
|
if c == 'I' {
|
|
state = 3
|
|
} else {
|
|
im.stream = append(im.stream, skipBytes...)
|
|
skipBytes = []byte{} // Clear.
|
|
state = 0
|
|
}
|
|
} else if state == 3 {
|
|
skipBytes = append(skipBytes, c)
|
|
if core.IsWhiteSpace(c) {
|
|
// image data finished.
|
|
if len(im.stream) > 100 {
|
|
common.Log.Trace("Image stream (%d): % x ...", len(im.stream), im.stream[:100])
|
|
} else {
|
|
common.Log.Trace("Image stream (%d): % x", len(im.stream), im.stream)
|
|
}
|
|
// Exit point.
|
|
return &im, nil
|
|
} else {
|
|
// Seems like "<ws>EI" was part of the data.
|
|
im.stream = append(im.stream, skipBytes...)
|
|
skipBytes = []byte{} // Clear.
|
|
state = 0
|
|
}
|
|
}
|
|
}
|
|
// Never reached (exit point is at end of EI).
|
|
}
|
|
}
|
|
}
|
|
}
|