class MiniMagick::Tool

def stdin


# executes `identify -` with the given standard input
identify.call(stdin: image_content)
identify.stdin
identify = MiniMagick.identify
@example

Adds ImageMagick's pseudo-filename `-` for standard input.
#
def stdin
  self << "-"
end