com.aspose.note

Class Image

    • Constructor Detail

      • Image

        public Image(Document document,
                     String path)

        Initializes a new instance of the Image class.

        Parameters:
        document - A parent document of the image.
        path - A string that contains the path to the file from which to create the Image.
      • Image

        public Image(Document document,
                     String fileName,
                     InputStream imageStream)

        Initializes a new instance of the Image class.

        Parameters:
        document - A parent document of the image.
        fileName - A name of the image.
        imageStream - A stream which contains the image.
    • Method Detail

      • getLastModifiedTime

        public Date getLastModifiedTime()

        Gets last modified time.

      • setLastModifiedTime

        public void setLastModifiedTime(Date value)

        Sets last modified time.

      • getWidth

        public float getWidth()

        Gets the width. This is the real width of the image in the MS OneNote document.

      • setWidth

        public void setWidth(float value)

        Sets the width. This is the real width of the image in the MS OneNote document.

      • getHeight

        public float getHeight()

        Gets the height. This is the real height of the image in the MS OneNote document.

      • setHeight

        public void setHeight(float value)

        Sets the height. This is the real height of the image in the MS OneNote document.

      • getOriginalWidth

        public float getOriginalWidth()

        Gets the original width. This is the original width of the image, before resizing.

      • getOriginalHeight

        public float getOriginalHeight()

        Gets the original height. This is the original width of the image, before resizing.

      • getFilePath

        public String getFilePath()

        Gets the path to the image file.

      • getFileName

        public String getFileName()

        Gets the file name.

      • getFormat

        public final com.aspose.ms.System.Drawing.Imaging.ImageFormat getFormat()

        Gets the image's format.

      • getBytes

        public byte[] getBytes()

        Gets the image data store.

      • getTags

        public List<NoteTagCore> getTags()

        Gets the list of tags of an image.

      • getAlignment

        public int getAlignment()

        Gets the alignment.

        Returns:
        The HorizontalAlignment.
      • setAlignment

        public void setAlignment(int value)

        Sets the alignment.

      • getAlternativeTextTitle

        public final String getAlternativeTextTitle()

        Gets a title of alternative text for the image.

      • setAlternativeTextTitle

        public final void setAlternativeTextTitle(String value)

        Sets a title of alternative text for the image.

      • getAlternativeTextDescription

        public final String getAlternativeTextDescription()

        Gets a body an alternative text for the image.

      • setAlternativeTextDescription

        public final void setAlternativeTextDescription(String value)

        Sets a body an alternative text for the image.

      • getHyperlinkUrl

        public String getHyperlinkUrl()

        Gets the hyperlink associated with the image.

      • setHyperlinkUrl

        public void setHyperlinkUrl(String value)

        Sets the hyperlink associated with the image.

      • accept

        public void accept(DocumentVisitor visitor)

        Accepts the visitor of the node.

        Specified by:
        accept in interface INode
        Specified by:
        accept in class Node
        Parameters:
        visitor - The object of a class derived from the DocumentVisitor.