Cannot TiffImage class and TiffFrame class

Hi,

I tried to split or Concatenate Multiple TIFF Images. I followed the link

But I cannot fine the TiffImage class. I used Aspose.Imaging namespace and tried all its sub name space.

I used latest version which post on 11-18-2015 from Aspose

I tried to Concatenate Multiple TIFF Images with the method from follow link

but I Concatenate Multiple TIFF Images. Im using Aspose.Imaging for reference

Hi Frank,

Can you please share the link from where have you downloaded the latest version? I do not see any version released on 11-18-2015 at http://www.aspose.com/community/files/51/.net-components/aspose.imaging-for-.net/default.aspx

The latest version available there is 3.1.0 and it includes TiffImage class.

Best Regards,

I downloaded from
http://www.aspose.com/community/files/51/.net-components/aspose.total-for-.net/default.aspx

and also I tried your link, downloaded it I still cannot get the Tiffimage class.
My environment: Windows 8, Visual studio 2012.
windows app, .net 4.0

following is the code in a windows form (named FromVb)

Imports RFCOMAPILib
Imports System. IO
Imports System.Drawing
Imports System.Drawing.Imaging
Imports System.Drawing.Drawing2D
Imports Aspose
Imports Aspose.Imaging
Imports Aspose.Imaging.ImageOptions
Imports Aspose.Imaging.Brushes
Imports Aspose.Imaging.Dithering
Imports Aspose.Imaging.Exceptions
Imports Aspose.Imaging.Exif
Imports Aspose.Imaging.Extensions
Imports Aspose.Imaging.FileFormats

Public Class FormVB
Private Sub ButtonSplitWithAspose_Click(sender As Object, e As EventArgs) Handles ButtonSplitWithAspose.Click

    'Create an instance of TiffImage and load the copied destination image
    Using image As TiffImage = CType(Aspose.Imaging.Image.Load(myDir & "tif_sample_1.tiff"), TiffImage)
        'Create an instance of TiffImage and load the source image
        Dim image1 As TiffImage = CType(Aspose.Imaging.Image.Load(myDir & "tif_sample_2.tif"), TiffImage)

        ' Create an instance of TIffFrame and copy active frame of source image
        Dim frame As TiffFrame = TiffFrame.CopyFrame(image1.ActiveFrame)

        ' Add copied frame to destination image
        image.AddFrame(frame)

        ' save the image with changes
        image.Save()
    End Using



End Sub

End Class

Thanks

Hi Frank,

Please also import Aspose.Imaging.FileFormats.Tiff namespace because TiffImage class is present there.

Best Regards,