Home
last modified time | relevance | path

Searched refs:gd_image (Results 1 – 25 of 26) sorted by relevance

12

/dports/audio/mp3plot/mp3plot-0.6.0/src/plotters/
H A Dgd_image.cc36 gd_image::gd_image(int w, int h, const gd_image::rgb24b_colour & c) in gd_image() function in mp3plot::gd_image
50 gd_image::gd_image(const gd_image & gdi) in gd_image() function in mp3plot::gd_image
63 gd_image & gd_image::operator=(const gd_image & gdi) in operator =()
66 gd_image temp(gdi); in operator =()
86 gd_image::~gd_image() { in ~gd_image()
92 gd_image gd_image::vmerge(const gd_image & top, const gd_image & bottom) { in vmerge()
96 gd_image rg(w, h, top.bgcol_); in vmerge()
104 gd_image & gd_image::flood(int colidx) { in flood()
114 gd_image & gd_image::resize(int w, int h) { in resize()
136 gd_image & gd_image::expand(int w, int h) { in expand()
[all …]
H A Dgd_image.h48 class gd_image {
69 gd_image(const gd_image &) throw (e_error);
76 gd_image & operator=(const gd_image &) throw (e_error);
83 ~gd_image();
86 gd_image & flood(int colidx);
91 static gd_image vmerge(const gd_image &, const gd_image &);
96 gd_image & resize(int, int);
104 gd_image & expand(int, int);
210 typedef gd_image image;
211 typedef gd_image::gd_colour_t colour;
[all …]
H A Dgd_plotter.cc42 using mp3plot::gd_image;
57 return gd_image(w, h, gd::rgb24b_colour(0xff)); in create_image()
65 return gd_image::vmerge(top, bottom); in vertical_merge()
100 cached_bordercol = new std::pair<gd_image*,int>(&im, col); in draw_rectangle()
119 mutable std::pair<gd_image*, int> * cached_bordercol;
135 …const gd_image im = image_plotter::plot<gdlib::image, gdlib::colour>(file.get_frames(), gd_interfa… in plot()
H A DMakefile.am14 gd_image.cc \
H A DMakefile.in64 gd_image.$(OBJEXT) magickpp_plotter.$(OBJEXT) colour.$(OBJEXT)
192 gd_image.cc \
/dports/graphics/libwmf-nox11/libwmf-0.2.12/src/ipa/
H A Dforeign.c78 gdImage* gd_image = 0; in wmf_image_load_png() local
84 if (gd_image == 0) return (-1); in wmf_image_load_png()
103 gdImage* gd_image = 0; in wmf_image_load_jpg() local
129 gdImage* gd_image = 0; in wmf_image_save_eps() local
152 width = gdImageSX (gd_image); in wmf_image_save_eps()
153 height = gdImageSY (gd_image); in wmf_image_save_eps()
186 if (gd_image->trueColor) in wmf_image_save_eps()
192 { rgb.r = gd_image->red[c]; in wmf_image_save_eps()
194 rgb.b = gd_image->blue[c]; in wmf_image_save_eps()
230 if (gd_image) in wmf_image_free()
[all …]
H A Dxgd.c146 ddata->gd_image = 0; in wmf_gd_function()
536 int * wmf_gd_image_pixels (void * gd_image) in wmf_gd_image_pixels() argument
540 gdImagePtr img = (gdImagePtr) gd_image; in wmf_gd_image_pixels()
/dports/graphics/libwmf/libwmf-0.2.12/src/ipa/
H A Dforeign.c78 gdImage* gd_image = 0; in wmf_image_load_png() local
84 if (gd_image == 0) return (-1); in wmf_image_load_png()
103 gdImage* gd_image = 0; in wmf_image_load_jpg() local
129 gdImage* gd_image = 0; in wmf_image_save_eps() local
152 width = gdImageSX (gd_image); in wmf_image_save_eps()
153 height = gdImageSY (gd_image); in wmf_image_save_eps()
186 if (gd_image->trueColor) in wmf_image_save_eps()
192 { rgb.r = gd_image->red[c]; in wmf_image_save_eps()
194 rgb.b = gd_image->blue[c]; in wmf_image_save_eps()
230 if (gd_image) in wmf_image_free()
[all …]
H A Dxgd.c146 ddata->gd_image = 0; in wmf_gd_function()
536 int * wmf_gd_image_pixels (void * gd_image) in wmf_gd_image_pixels() argument
540 gdImagePtr img = (gdImagePtr) gd_image; in wmf_gd_image_pixels()
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/modules/system/class/thumbs/
H A Dphpthumb.ico.php23 foreach ($gd_image_array as $key => $gd_image) {
25 $ImageWidths[$key] = imagesx($gd_image);
26 $ImageHeights[$key] = imagesy($gd_image);
27 $bpp[$key] = imageistruecolor($gd_image) ? 32 : 24;
28 $totalcolors[$key] = imagecolorstotal($gd_image);
33 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y);
65 foreach ($gd_image_array as $key => $gd_image) {
91 foreach ($gd_image_array as $key => $gd_image) {
111 foreach ($gd_image_array as $key => $gd_image) {
H A Dphpthumb.bmp.php41 public function GD2BMPstring(&$gd_image) { argument
42 $imageX = imagesx($gd_image);
43 $imageY = imagesy($gd_image);
49 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y);
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Dimage.c360 gdImagePtr gd_image = NULL; in Nlm_LoadImageGIF() local
375 gd_image = gdImageCreateFromGif( inp_stream ); in Nlm_LoadImageGIF()
376 if ( !gd_image ) { in Nlm_LoadImageGIF()
397 width = (Nlm_Uint2)gdImageSX( gd_image ); in Nlm_LoadImageGIF()
398 height = (Nlm_Uint2)gdImageSY( gd_image ); in Nlm_LoadImageGIF()
409 gdImageDestroy( gd_image ); in Nlm_LoadImageGIF()
457 gdImageDestroy( gd_image ); in Nlm_LoadImageGIF()
488 gdImagePtr gd_image; in Nlm_SaveImageGIF() local
536 gdImageDestroy( gd_image ); in Nlm_SaveImageGIF()
542 gdImageGif(gd_image, out_stream); in Nlm_SaveImageGIF()
[all …]
/dports/graphics/gimageview/gimageview-0.2.27/plugins/image_loader/
H A Dwmf.c237 void *gd_image = NULL; in gimv_wmf_load() local
289 gd_image = ddata->gd_image; in gimv_wmf_load()
293 if (gd_image) gd_pixels = wmf_gd_image_pixels (gd_image); in gimv_wmf_load()
/dports/graphics/libwmf/libwmf-0.2.12/include/libwmf/
H A Dgd.h53 void* gd_image; member
80 extern int * wmf_gd_image_pixels (void * gd_image);
/dports/graphics/libwmf-nox11/libwmf-0.2.12/include/libwmf/
H A Dgd.h53 void* gd_image; member
80 extern int * wmf_gd_image_pixels (void * gd_image);
/dports/graphics/libwmf-nox11/libwmf-0.2.12/src/
H A Dio-wmf.c195 if (ddata->gd_image != NULL) gd_pixels = wmf_gd_image_pixels (ddata->gd_image); in gdk_pixbuf__wmf_image_stop_load()
/dports/graphics/libwmf/libwmf-0.2.12/src/
H A Dio-wmf.c195 if (ddata->gd_image != NULL) gd_pixels = wmf_gd_image_pixels (ddata->gd_image); in gdk_pixbuf__wmf_image_stop_load()
/dports/german/BBBike/BBBike-3.18/lib/GD/
H A DConvert.pm593 my($gd_image, $fg) = @_;
596 my($width, $height) = $gd_image->getBounds;
606 if ($gd_image->getPixel($x, $y) == $fg) {
/dports/graphics/pear-Image_Barcode/Image_Barcode-1.1.3/Image/Barcode/
H A DCode39.php245 * @return gd_image GD image object
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/common/
H A Dfile-wmf.c877 if (ddata->gd_image != NULL) in wmf_get_pixbuf()
878 gd_pixels = wmf_gd_image_pixels (ddata->gd_image); in wmf_get_pixbuf()
975 if (ddata->gd_image != NULL) in wmf_load_file()
976 gd_pixels = wmf_gd_image_pixels (ddata->gd_image); in wmf_load_file()
/dports/games/openlierox/OpenLieroX/src/client/
H A DGfxPrimitives.cpp2559 gdImagePtr gd_image = gdImageCreateTrueColor(src->w,src->h); in SDLSurface2GDImage() local
2560 if(!gd_image) in SDLSurface2GDImage()
2585 return gd_image; in SDLSurface2GDImage()
2629 gdImagePtr gd_image = NULL; in SaveSurface() local
2632 gd_image = SDLSurface2GDImage ( image ); in SaveSurface()
2633 if ( !gd_image ) in SaveSurface()
2647 data = ( char * ) gdImagePngPtr ( gd_image, &s ); in SaveSurface()
2650 data = ( char * ) gdImageJpegPtr ( gd_image, &s,tLXOptions->iJpegQuality ); in SaveSurface()
2653 data = ( char * ) gdImageGifPtr ( gd_image, &s ); in SaveSurface()
2656 data = ( char * ) gdImagePngPtr ( gd_image, &s ); in SaveSurface()
[all …]
/dports/graphics/libwmf-nox11/libwmf-0.2.12/src/ipa/xgd/
H A Ddevice.h164 ddata->gd_image = (void*) gd->image; in wmf_gd_device_end()
/dports/graphics/libwmf/libwmf-0.2.12/src/ipa/xgd/
H A Ddevice.h164 ddata->gd_image = (void*) gd->image; in wmf_gd_device_end()
/dports/finance/prestashop/prestashop/admin/filemanager/include/
H A Dphp_image_magician.php3090 private function GD2BMPstring(&$gd_image) argument
3101 $imageX = imagesx($gd_image);
3102 $imageY = imagesy($gd_image);
3108 $argb = $this->GetPixelColor($gd_image, $x, $y);
/dports/www/thirtybees/thirtybees-1.1.0/admin/filemanager/include/
H A Dphp_image_magician.php3062 private function GD2BMPstring(&$gd_image) argument
3073 $imageX = ImageSX($gd_image);
3074 $imageY = ImageSY($gd_image);
3080 $argb = $this->GetPixelColor($gd_image, $x, $y);

12