mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							359 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							359 B
						
					
					
				# frozen_string_literal: true
 | 
						|
 | 
						|
module ImageUtils
 | 
						|
  module_function
 | 
						|
 | 
						|
  def blank?(image)
 | 
						|
    stats = image.stats
 | 
						|
 | 
						|
    min = (0...image.bands).map { |i| stats.getpoint(0, i)[0] }
 | 
						|
    max = (0...image.bands).map { |i| stats.getpoint(1, i)[0] }
 | 
						|
 | 
						|
    return true if min.all?(255) && max.all?(255)
 | 
						|
    return true if min.all?(0) && max.all?(0)
 | 
						|
 | 
						|
    false
 | 
						|
  end
 | 
						|
end
 |