Home
last modified time | relevance | path

Searched refs:thumb_image (Results 1 – 9 of 9) sorted by last modified time

/dports/graphics/darktable38/darktable-3.8.0/data/themes/
H A Ddarktable.css2200 #thumb_image
2271 #thumb_image
2388 .dt_overlays_hover_block #thumb_image:hover #thumb_bottom
2524 .dt_thumbnail_rating_6 #thumb_image
2529 .dt_thumbnail_rating_6#thumb_main:hover #thumb_image
2572 #thumb_image:hover #thumb_localcopy,
2651 .dt_preview #thumb_image, .dt_preview_thumb_image#thumb_image
2655 .dt_culling #thumb_main:selected #thumb_image,
2656 .dt_preview #thumb_main:selected #thumb_image
2661 .dt_culling #thumb_main:hover #thumb_image,
[all …]
/dports/www/py-scrapy/Scrapy-2.5.1/scrapy/pipelines/
H A Dimages.py144 thumb_image, thumb_buf = self.convert_image(image, size)
145 yield thumb_path, thumb_image, thumb_buf
/dports/graphics/darktable/darktable-3.6.1/data/themes/
H A Ddarktable.css2140 #thumb_image
2210 #thumb_image
2326 .dt_overlays_hover_block #thumb_image:hover #thumb_bottom
2398 .dt_overlays_hover_block #thumb_image:hover .dt_thumb_btn,
2400 .dt_overlays_hover_block #thumb_image:hover #thumb_audio,
2477 #thumb_image:hover #thumb_localcopy,
2556 .dt_preview #thumb_image, .dt_preview_thumb_image#thumb_image
2560 .dt_culling #thumb_main:selected #thumb_image,
2561 .dt_preview #thumb_main:selected #thumb_image
2566 .dt_culling #thumb_main:hover #thumb_image,
[all …]
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/
H A DMedia.php221 $thumb_image = imagecreatetruecolor($width, $height);
223 imagesavealpha($thumb_image, true);
224 … imagefill($thumb_image, 0, 0, imagecolorallocatealpha($thumb_image, 0, 0, 0, 127));
226 …imagecopyresampled($thumb_image, $main_image, 0, 0, 0, 0, $width, $height, $imgsize[0], $imgsize[1…
229 imagepng($thumb_image, $file);
232 imagegif($thumb_image, $file);
235 imagejpeg($thumb_image, $file);
239 imagedestroy($thumb_image);
/dports/astro/opencpn/OpenCPN-5.2.4/src/
H A Dchartimg.cpp2546 wxImage thumb_image(des_width, des_height, pPixTN, true); in CreateThumbnail() local
2547 thumb_image.Rescale( des_width/4, des_height/4, wxIMAGE_QUALITY_HIGH ); in CreateThumbnail()
2548 retBMP = new wxBitmap(thumb_image); in CreateThumbnail()
/dports/multimedia/lives/lives-3.2.0/src/
H A Dmultitrack.c10865 LiVESWidget *thumb_image = NULL; in mt_init_clips() local
10921 thumb_image = lives_image_new(); in mt_init_clips()
10922 lives_image_set_from_pixbuf(LIVES_IMAGE(thumb_image), thumbnail); in mt_init_clips()
10935 lives_box_pack_start(LIVES_BOX(vbox), thumb_image, FALSE, FALSE, widget_opts.packing_height); in mt_init_clips()
H A Dce_thumbs.c150 LiVESWidget *thumb_image = NULL; in start_ce_thumb_mode() local
391 thumb_image = lives_image_new(); in start_ce_thumb_mode()
392 lives_image_set_from_pixbuf(LIVES_IMAGE(thumb_image), thumbnail); in start_ce_thumb_mode()
417 lives_container_add(LIVES_CONTAINER(align), thumb_image); in start_ce_thumb_mode()
/dports/graphics/freeimage/FreeImage/Source/FreeImage/
H A DPluginRAW.cpp267 libraw_processed_image_t *thumb_image = NULL; in libraw_LoadEmbeddedPreview() local
278 thumb_image = RawProcessor->dcraw_make_mem_thumb(&error_code); in libraw_LoadEmbeddedPreview()
279 if(thumb_image) { in libraw_LoadEmbeddedPreview()
280 if(thumb_image->type != LIBRAW_IMAGE_BITMAP) { in libraw_LoadEmbeddedPreview()
282 FIMEMORY *hmem = FreeImage_OpenMemory((BYTE*)thumb_image->data, (DWORD)thumb_image->data_size); in libraw_LoadEmbeddedPreview()
295 dib = libraw_ConvertProcessedImageToDib(thumb_image); in libraw_LoadEmbeddedPreview()
302 RawProcessor->dcraw_clear_mem(thumb_image); in libraw_LoadEmbeddedPreview()
308 if(thumb_image) { in libraw_LoadEmbeddedPreview()
309 RawProcessor->dcraw_clear_mem(thumb_image); in libraw_LoadEmbeddedPreview()
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/gui/
H A DPicturePanel.java84 private Image thumb_image; field in PicturePanel
260 thumb_image = createImage(thumb_source); in PicturePanel()
1064 g.drawImage(thumb_image, x3 + w3 - 160 - 4, y3 + h3 - 90 - 4, this); in paintFileInfo()