GdPicture.NET V 6.7 Releases [DataMatrix barcode reco.]

Changelogs, news, and special event announcements.
Locked
User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7 Releases [DataMatrix barcode reco.]

Post by Loïc » Wed Apr 07, 2010 11:07 am

GdPicture.NET V 6.7 Releases are available !


Major improvements

- New PDF Reader features in the GdPictureImaging class.
- Image extraction from PDF feature.
- New JPEG lossless transformation features.
- New set of TWAIN features.
- Size of assemblies have been reduced.
- Battery of bug fixes & speed improvement.



New methods of the GdPictureImaging class

new method GetDocumentFormatFromFile

new method JPEGLosslessCrop
new method JPEGLosslessFlipX
new method JPEGLosslessFlipY
new method JPEGLosslessRotate90
new method JPEGLosslessRotate180
new method JPEGLosslessRotate270
new method JPEGLosslessTranspose
new method JPEGLosslessTransverse

new method PdfReaderCloseDocument
new method PdfReaderExtractImage
new method PdfReaderGetAuthor
new method PdfReaderGetCreationDate
new method PdfReaderGetCreator
new method PdfReaderGetCurrentPage
new method PdfReaderGetEncryptionScheme
new method PdfReaderGetImageCount
new method PdfReaderGetKeywords
new method PdfReaderGetMetadata
new method PdfReaderGetModificationDate
new method PdfReaderGetPageCount
new method PdfReaderGetPageHeight
new method PdfReaderGetPageRotation
new method PdfReaderGetPageText
new method PdfReaderGetPageTextArea
new method PdfReaderGetPageThumbnail
new method PdfReaderGetPageWidth
new method PdfReaderGetProducer
new method PdfReaderGetSubject
new method PdfReaderGetTitle
new method PdfReaderGetVersion
new method PdfReaderIsEncrypted
new method PdfReaderLoadFromFile
new method PdfReaderLoadFromStream
new method PdfReaderRenderPageToGdPictureImage
new method PdfReaderSelectPage
new method PdfReaderSetPassword

new method TwainGetGamma
new method TwainGetNoiseFilter
new method TwainGetOrientation
new method TwainGetRotation
new method TwainGetXScaling
new method TwainGetYScaling
new method TwainIsGammaAvailable
new method TwainIsNoiseFilterAvailable
new method TwainIsOrientationAvailable
new method TwainIsRotationAvailable
new method TwainIsXScalingAvailable
new method TwainIsYScalingAvailable
new method TwainLoadConfiguration
new method TwainSaveConfiguration
new method TwainSetGamma
new method TwainSetNoiseFilter
new method TwainSetOrientation
new method TwainSetRotation
new method TwainSetXScaling
new method TwainSetYScaling


New method of the GdViewerclass

DisplayFromPDFHandle




..And now ? What GdPicture team will provide ?
See this blog post to get some clues ;) https://www.gdpicture.com/blog/gdpicture ... n-released

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.1 Releases

Post by Loïc » Tue Apr 20, 2010 4:44 pm

- Battery of minor bug fixes
- Some algorithm speed improvement

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.2 Releases

Post by Loïc » Sun May 02, 2010 7:49 pm

- Some Speed improvements in documents rendering
- GdViewer supports Orientation tag
- DataMatrix barcode recognition plugin has been added (requires additional license). See: https://www.gdpicture.com/products/plugi ... nition.php
- Some minor bug fixes


New method of the GdPictureImaging class:


- BarcodeDataMatrixReaderClear()
- BarcodeDataMatrixReaderGetBarcodeY4()
- BarcodeDataMatrixReaderGetBarcodeX4()
- BarcodeDataMatrixReaderGetBarcodeY3()
- BarcodeDataMatrixReaderGetBarcodeX3()
- BarcodeDataMatrixReaderGetBarcodeY2()
- BarcodeDataMatrixReaderGetBarcodeX2()
- BarcodeDataMatrixReaderGetBarcodeY1()
- BarcodeDataMatrixReaderGetBarcodeX1()
- BarcodeDataMatrixReaderGetBarcodeColumns()
- BarcodeDataMatrixReaderGetBarcodeRows()
- BarcodeDataMatrixReaderGetBarcodeValue()
- BarcodeDataMatrixReaderGetBarcodeCount()
- BarcodeDataMatrixReaderDoScan()

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.3 Releases

Post by Loïc » Mon May 10, 2010 10:19 am

- Battery of bug fixes
- Some speed improvements
- Added support for mixed compression in Multipage TIFF image *



* Mixed compression in Multipage TIFF images. How does it work ?

It is now very easy to mix compression in Multipage TIFF images to get reduced file size.
The idea is very basic: Bitonal (black & white) frames are compressed using CCITT4 scheme & other frames will use LZW compression.
To use this feature you have just to use the new TiffCompressionAUTO member of the TiffCompression enumeration into appropriated methods.

- Example using the sequential tiff image writing method

Code: Select all

    ' Create multipage tif image from several existing image files:
    Dim ImageID1, ImageID2, ImageID3 As Integer
     
     ImageID1 = oGdPictureImaging.CreateGdPictureImageFromFile("image1.tif")
     ImageID2 = oGdPictureImaging.CreateGdPictureImageFromFile("image2.jpg")
     ImageID3 = oGdPictureImaging.CreateGdPictureImageFromFile("image3.jpg")
     
     oGdPictureImaging.TiffSaveAsMultiPageFile(ImageID1, "multipage.tif", TiffCompression.TiffCompressionAUTO)
     oGdPictureImaging.TiffAddToMultiPageFile(ImageID1, ImageID2)
     oGdPictureImaging.TiffAddToMultiPageFile(ImageID1, ImageID3)
     oGdPictureImaging.TiffCloseMultiPageFile(ImageID1)
     
     oGdPictureImaging.ReleaseGdPictureImage(ImageID1)
     oGdPictureImaging.ReleaseGdPictureImage(ImageID2)
     oGdPictureImaging.ReleaseGdPictureImage(ImageID3)

Enjoy !


Loïc

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.4 Releases

Post by Loïc » Wed Jun 02, 2010 4:02 pm

- Document Viewing speed & quality improvement
- Document Printing speed & quality improvement
- Windows 2000 compatibility have been reintroduced
- Text within PDF form-field can now be extracted/searched
- Battery of minor bug fixes
- Some samples corrections

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.5 Releases

Post by Loïc » Tue Jun 29, 2010 1:52 pm

- Rendering bug fix
- ICC & CMYK color space management bug fix
- ICCAddProfileToFile supports now CMYK & RGB colour space & tiff, png, jpeg image formats
- bug fix in regions
- Removed the 20 max barcode dectection limitation in the 1D barcode recognition plugin
- Battery of bug fixes in demo applications

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.6 Releases

Post by Loïc » Fri Jul 16, 2010 11:00 am

- Document Viewing speed & quality improvement
- Faster image loading
- TWAIN support improvement for Network Scanners
- Battery of minor bug fixes

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.7 Releases

Post by Loïc » Tue Aug 03, 2010 3:13 pm

- Minor bug fixes
- Better support for Metafile rendering
- Rendering quality & speed improved for some format

User avatar
Loïc
Site Admin
Posts: 5881
Joined: Tue Oct 17, 2006 10:48 pm
Location: France
Contact:

GdPicture.NET V 6.7.9 Releases

Post by Loïc » Mon Aug 23, 2010 12:11 pm

- Minor bug fixes
- Speed improvement

Locked

Who is online

Users browsing this forum: No registered users and 1 guest