Sha256: dd2ad464ce9ab38b513e0598f1b8ce91bcfe3e6c91c30b77f857b91143052e12

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

# encoding: utf-8

# Spec'ing the PNG class. Not complete yet - still needs to check the
# contents of palette and transparency to ensure they're correct.
# Need to find files that have these sections first.

require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")

describe "When reading a JPEG file" do
  before(:each) do
    @filename = "#{Prawn::DATADIR}/images/pigs.jpg"
    @img_data = File.open(@filename, "rb") { |f| f.read }
  end

  it "should read the basic attributes correctly" do
    jpg = Prawn::Images::JPG.new(@img_data)

    expect(jpg.width).to eq(604)
    expect(jpg.height).to eq(453)
    expect(jpg.bits).to eq(8)
    expect(jpg.channels).to eq(3)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prawn-2.1.0 spec/jpg_spec.rb
prawn-2.0.2 spec/jpg_spec.rb