Click or drag to resize

PdfImage Class

Contains information about a single image or file to be added to the PDF.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.Codec.PdfPdfImage

Namespace:  Atalasoft.Imaging.Codec.Pdf
Assembly:  Atalasoft.dotImage.Pdf (in Atalasoft.dotImage.Pdf.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class PdfImage

The PdfImage type exposes the following members.

Constructors
  NameDescription
Public methodPdfImage(AtalaImage, PdfCompressionType)
Creates a new PdfImage specifying image and compression.
Public methodPdfImage(Stream, Int32, PdfCompressionType)
Creates an instance of PdfImage from a stream, frameIndex and compression.
Public methodPdfImage(String, Int32, PdfCompressionType)
Creates a new PdfImage specifying fileName, frameIndex and compression.
Top
Properties
  NameDescription
Public propertyCompression
Gets the compression used on the image data.
Public propertyFileName
Gets the filename or url for the image.
Public propertyFrame
Gets the frame of image to be saved from either a filename or a stream. -1 indicates that this image represents every image in the stream or file.
Public propertyImage
Gets the AtalaImage that will be saved to the PDF.
Public propertyStream
Gets the stream containing an image to be saved into PDF
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
This object is used for more low level control when saving a PDF image using the PdfEncoder.
See Also