Sha256: 7607daacc2fda9e68a2be609e8785c9f5c1ecacf6bb0529a43312a3a4507671f
Contents?: true
Size: 1.1 KB
Versions: 35
Compression:
Stored size: 1.1 KB
Contents
require 'spec_helper' describe FormatParser::PNGParser do describe 'is able to parse all the examples from FastImage' do Dir.glob(fixtures_dir + '/*.png').each do |png_path| it "is able to parse #{File.basename(png_path)}" do parsed = subject.call(File.open(png_path, 'rb')) expect(parsed).not_to be_nil expect(parsed.nature).to eq(:image) expect(parsed.format).to eq(:png) expect(parsed.color_mode).to eq(:indexed) expect(parsed.width_px).to be_kind_of(Integer) expect(parsed.width_px).to be > 0 expect(parsed.height_px).to be_kind_of(Integer) expect(parsed.height_px).to be > 0 expect(parsed.content_type).to eq('image/png') end end end it 'is able to parse an animated PNG' do gif_path = fixtures_dir + 'PNG/anim.png' parsed = subject.call(File.open(gif_path, 'rb')) expect(parsed).not_to be_nil expect(parsed.width_px).to eq(320) expect(parsed.height_px).to eq(180) expect(parsed.has_multiple_frames).to eq(true) expect(parsed.num_animation_or_video_frames).to eq(17) end end
Version data entries
35 entries across 35 versions & 1 rubygems