2008-05-20 17:15 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbvpdf/hbvpdft.prg
! Fixed include filename to be in lower case.
Reported by Lorenzo.
* contrib/hbhpdf/tests/files/gray.jpg
* contrib/hbhpdf/tests/files/rgb.jpg
* contrib/hbgd/tests/gdtest.prg
* contrib/hbgd/tests/gdtestcls.prg
* contrib/hbgd/tests/tostring.prg
* contrib/hbgd/tests/images_in/gdlogobig.png
- contrib/hbgd/tests/images_in/conv_test.jpeg
+ contrib/hbgd/tests/images_in/conv_test.jpg
! .jpg cleanup.
@@ -8,6 +8,21 @@
|
||||
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2008-05-20 17:15 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
|
||||
* contrib/hbvpdf/hbvpdft.prg
|
||||
! Fixed include filename to be in lower case.
|
||||
Reported by Lorenzo.
|
||||
|
||||
* contrib/hbhpdf/tests/files/gray.jpg
|
||||
* contrib/hbhpdf/tests/files/rgb.jpg
|
||||
* contrib/hbgd/tests/gdtest.prg
|
||||
* contrib/hbgd/tests/gdtestcls.prg
|
||||
* contrib/hbgd/tests/tostring.prg
|
||||
* contrib/hbgd/tests/images_in/gdlogobig.png
|
||||
- contrib/hbgd/tests/images_in/conv_test.jpeg
|
||||
+ contrib/hbgd/tests/images_in/conv_test.jpg
|
||||
! .jpg cleanup.
|
||||
|
||||
2008-05-20 13:30 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
|
||||
+ contrib/hbvpdf
|
||||
+ contrib/hbvpdf/common.mak
|
||||
|
||||
@@ -40,7 +40,7 @@ PROCEDURE Main()
|
||||
im = gdImageCreate(200, 200)
|
||||
|
||||
/* Load an image in memory from file */
|
||||
im2 = gdImageCreateFromJpeg( IMAGES_IN + "conv_test.jpeg")
|
||||
im2 = gdImageCreateFromJpeg( IMAGES_IN + "conv_test.jpg")
|
||||
|
||||
/* Now work on first empty image */
|
||||
|
||||
|
||||
@@ -46,8 +46,8 @@ PROCEDURE Main()
|
||||
oI := GDImage():Create( 200, 200 )
|
||||
|
||||
/* Load an image in memory from file */
|
||||
oI2 := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpeg" )
|
||||
oI5 := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpeg" )
|
||||
oI2 := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpg" )
|
||||
oI5 := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpg" )
|
||||
|
||||
/* Now work on first empty image */
|
||||
|
||||
@@ -271,7 +271,7 @@ PROCEDURE Main()
|
||||
red := oI5:SetColor(250, 0, 0)
|
||||
|
||||
// Load an image as brush
|
||||
oB := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpeg" )
|
||||
oB := GDImage():LoadFromJpeg( IMAGES_IN + "conv_test.jpg" )
|
||||
oB:Zoom(15)
|
||||
|
||||
// oI5:AddDef( "MAXVALUE", 150 )
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -32,7 +32,7 @@ PROCEDURE Main()
|
||||
*/
|
||||
|
||||
/* Load an image from file */
|
||||
oI := GDImage():LoadFromFile( IMAGES_IN + "conv_test.jpeg" )
|
||||
oI := GDImage():LoadFromFile( IMAGES_IN + "conv_test.jpg" )
|
||||
|
||||
oI:SaveJpeg( IMAGES_OUT + "testfile.jpg" )
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
@@ -20,7 +20,7 @@
|
||||
|
||||
|
||||
#ifdef __HARBOUR__ // Harbour and xHarbour
|
||||
#include 'HBClass.ch'
|
||||
#include 'hbclass.ch'
|
||||
#endif
|
||||
|
||||
#ifdef __XPP__ // xBase++
|
||||
|
||||