Search found 5882 matches

by Loïc
Mon Jun 18, 2007 11:11 am
Forum: Document Viewing
Topic: Blank gdviewer on TIF document
Replies: 3
Views: 5845

Hi,

I got the file.

Unfortunately I haven't any way to display this file.
I've never seen this kind of image file. Are you sure that the tif generator used does not made invalid file ?
Photoshop CS2 can not open it too...

Best regards,

Loïc
by Loïc
Mon Jun 18, 2007 11:08 am
Forum: Document Viewing
Topic: DisplaFromPdfFile method very slow
Replies: 1
Views: 4298

Hi,

Could you send me this pdf file at esupport (at) gdpicture (dot) com ?


Best regards,

Loïc
by Loïc
Mon Jun 18, 2007 11:07 am
Forum: Document Viewing
Topic: Copy to Device context
Replies: 3
Views: 5709

This is only possible with GdPicture or GdPicture Pro.

Regards,

Loïc
by Loïc
Mon Jun 18, 2007 11:06 am
Forum: Image Processing & Document Imaging
Topic: No picture when Backstyle property = transparent
Replies: 3
Views: 5445

Hi,


In the next release, the GdViewer comtrol will be able to display image with transparency.

Best regards,

Loïc
by Loïc
Mon Jun 18, 2007 11:03 am
Forum: Image Processing & Document Imaging
Topic: Tif File Display half image only
Replies: 6
Views: 6079

Hi,

This problem will be solve for the next release.

Best regards,

Loïc
by Loïc
Thu Jun 14, 2007 9:39 am
Forum: Image Processing & Document Imaging
Topic: Images created with SaveAsBMB
Replies: 3
Views: 5664

PS: 24 bpp Image use 24 bits per color (8 for Red, 8 for Green, 8 for Blue) 34 bpp Image use 32 bits per color (8 for Alpha (transparency, 8 for Red, 8 for Green, 8 for Blue) Your first Image was 32bits for 377Kb If you convert it to 24 BPP the new size will be: 377 * (24 / 32) = 282.75 Kb Best rega...
by Loïc
Thu Jun 14, 2007 9:35 am
Forum: Image Processing & Document Imaging
Topic: Images created with SaveAsBMB
Replies: 3
Views: 5664

Hi, It is normal: The image saved with GdPicture [Pro] has 32BPP color depth. The image saved with mspaint has 24BPP color depth. Few old softwares can't read 32 BPP image colors. If you want to save bmp as 24 BPP color with GdPicture [Pro] you have just to call the ConvertTo24Bpp() methode before s...
by Loïc
Wed Jun 13, 2007 2:28 pm
Forum: Image Processing & Document Imaging
Topic: admin rights
Replies: 1
Views: 4057

Hi,

Could you tell me more precisions ?
I use gdpicturepro with myvfpexe
What is "myvfpexe" ?

I get access denied on XP (tablet) with No admin rights.
When this problem occurs ?
Which version of the component are you using ?

Thanks,

Loïc
by Loïc
Thu Jun 07, 2007 2:21 pm
Forum: Image Processing & Document Imaging
Topic: How to set a custom paper size for the printer ?
Replies: 2
Views: 3563

Hi,

I've added a new method: PrintSetUserPaperSize(nWidth, nHeight)

nWidth and nHeight are custom paper size in millimeters

Available in the last beta release:
https://www.gdpicture.com/ressources/betas/


Best regards,

Loïc Carrère
by Loïc
Wed Jun 06, 2007 7:47 pm
Forum: Image Processing & Document Imaging
Topic: PDF contenant des pages de tailles différentes
Replies: 9
Views: 14332

Merci pour le retour.

Loïc
by Loïc
Wed Jun 06, 2007 3:55 pm
Forum: Image Processing & Document Imaging
Topic: fast overlay display
Replies: 8
Views: 10005

actually, how can i remove the gdobject from the viewver once it has beeen placed using DisplayOnHDC() ?? You have just to call the Refresh() method of the gdviewer control and don't call thes lines: Call oGdPicture.SetNativeImage(nIcoHandle) Call oGdPicture.DisplayImageOnHDC(oGdViewer.hDC, 1, 1, 1...
by Loïc
Wed Jun 06, 2007 2:49 pm
Forum: Image Processing & Document Imaging
Topic: PDF contenant des pages de tailles différentes
Replies: 9
Views: 14332

Bonjour, j'ai encore mieux. Vous pouvez utiliser le code suivant en lieu et place de celui que vous venez de décrire: oGdPicture.PdfNewPdf(epath) For Idimg As Integer = 0 To pagesId.Length - 1 vidimg = oGdPicture.PdfAddImageFromImageID(pagesId(Idimg)) Call oGdPicture.PdfSetPageDimensions(GdPicture.P...
by Loïc
Tue Jun 05, 2007 5:38 pm
Forum: Image Processing & Document Imaging
Topic: PDF contenant des pages de tailles différentes
Replies: 9
Views: 14332

Bonjour, Vous pouvez désormais définir les dimentions de chacune des pages d'un fichier PDF avec la dernière beta release: https://www.gdpicture.com/ressources/betas/gdpicturepro.ocx Vous pouvez trouver un exemple d'utilisation assez simple sur cette page: https://www.gdpicture.com/forum/viewtopic.p...
by Loïc
Tue Jun 05, 2007 2:44 pm
Forum: Image Processing & Document Imaging
Topic: fast overlay display
Replies: 8
Views: 10005

Hi,
if i do the OnHDC, will the icon be zoomed in zoomed out as well ?!

I don't understand the question :?

Loïc
by Loïc
Tue Jun 05, 2007 11:48 am
Forum: Image Processing & Document Imaging
Topic: fast overlay display
Replies: 8
Views: 10005

Hi, If I understand what you want to do is to dispay a large image file with the gdviewer object and to display over it other smallest pictures/images ? You can do that easily: - Catch the Displayed() event of the GdViewer object. - Use a cGdPicture object to draw image on HDC: DisplayImageOnHDC() m...