Hi,
I have atalasoft tool to create & tilt image for a desktop application. I want high resolution print quality image as output. But I am facing some issues related to Anti-Aliasing and Quality.
Can anyone guide me how to cope up with this problem and generate high print quality image. Code i used is as follows
-------------------------
Dim image As AtalaImage = New AtalaImage(strFileName)
' Warp the image.
Dim cmd As Transforms.QuadrilateralWarpCommand = New Transforms.QuadrilateralWarpCommand(pts1(1), pts1(0), pts1(3), pts1(2), Atalasoft.Imaging.ImageProcessing.InterpolationMode.BiLinear, Color.White)
Dim result As AtalaImage = cmd.ApplyToImage(image) ' ToImage(image) ' tc.ApplyToImage(image)
clsSharedValues.bevelFileNo = clsSharedValues.bevelFileNo + 1
i = clsSharedValues.bevelFileNo
Dim tempPath As String = file_path & "Bevel\" & i & "Bevel.tif"
Dim myWorkspace As Workspace = New Workspace()
myWorkspace.Image = result
myWorkspace.Save(tempPath, New TiffEncoder(TiffCompression.NoCompression))
----------------------------------------