Home
last modified time | relevance | path

Searched refs:width_height (Results 1 – 25 of 64) sorted by relevance

123

/dports/graphics/netpbm/netpbm-10.91.01/test/
H A Dpamscale-filters2.test8 width_height=`pamfile -size testimg.ppm | \
17 pamscale ${width_height} -filter=mitchell ${stretch_ppm} | \
28 pamscale ${width_height} -filter=gauss ${stretch_ppm} | \
39 pamscale ${width_height} -filter=sinc ${stretch_ppm} | \
50 pamscale ${width_height} -filter=bessel ${stretch_ppm} | \
61 pamscale ${width_height} -filter=hanning ${stretch_ppm} | \
72 pamscale ${width_height} -filter=hamming ${stretch_ppm} | \
83 pamscale ${width_height} -filter=blackman ${stretch_ppm} | \
94 pamscale ${width_height} -filter=blackman ${stretch_ppm} | \
H A Dpamscale-filters1.test8 width_height=`pamfile -size testimg.ppm | \
21 pamscale ${width_height} -filter=point ${enlarge_ppm} | \
31 pamscale ${width_height} -filter=triangle ${enlarge_ppm} | \
41 pamscale ${width_height} -filter=quadratic ${enlarge_ppm} | \
51 pamscale ${width_height} -filter=cubic ${enlarge_ppm} | \
61 pamscale ${width_height} -filter=catrom ${enlarge_ppm} | \
H A Dpamstretch.test42 width_height=`pamfile -size ${dropedge_ppm} | \
44 pamcut -left=0 -top=0 ${width_height} ${stretch_ppm} | cksum
45 pamcut -left=0 -top=0 ${width_height} ${blackedge_ppm} | cksum
46 pamcut -left=0 -top=0 ${width_height} ${dropedge_ppm} | cksum
H A Dpamscale-filters3.test8 width_height=`pamfile -size testimg.ppm | \
17 pamscale ${width_height} -filter=hermite ${stretch_ppm} | \
28 pamscale ${width_height} -filter=lanczos ${stretch_ppm} | \
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dnexx.py200 width_height = p[1].split('x')
201 if len(width_height) == 2:
203 'width': int_or_none(width_height[0]),
204 'height': int_or_none(width_height[1]),
281 width_height = ss[1].split('x')
282 if len(width_height) == 2:
284 'width': int_or_none(width_height[0]),
285 'height': int_or_none(width_height[1]),
/dports/www/youtube_dl/youtube-dl/youtube_dl/extractor/
H A Dnexx.py200 width_height = p[1].split('x')
201 if len(width_height) == 2:
203 'width': int_or_none(width_height[0]),
204 'height': int_or_none(width_height[1]),
281 width_height = ss[1].split('x')
282 if len(width_height) == 2:
284 'width': int_or_none(width_height[0]),
285 'height': int_or_none(width_height[1]),
/dports/graphics/netpbm/netpbm-10.91.01/editor/
H A Dpamstretch-gen99 width_height=${iscale_width_height#* }
101 echo "pamstretch-gen: rounded scale factor=$iscale $width_height" 1>&2
105 pamscale $verboseopt $quietopt $plainopt $width_height
/dports/devel/py-game/pygame-2.1.0/buildconfig/pygame-stubs/
H A Drect.pyi57 width_height: Union[List[float], Tuple[float, float], Vector2],
93 width_height: Union[List[float], Tuple[float, float], Vector2],
106 width_height: Union[List[float], Tuple[float, float], Vector2],
116 width_height: Union[List[float], Tuple[float, float], Vector2],
128 width_height: Union[List[float], Tuple[float, float], Vector2],
154 width_height: Union[List[float], Tuple[float, float], Vector2],
164 width_height: Union[List[float], Tuple[float, float], Vector2],
178 width_height: Union[List[float], Tuple[float, float], Vector2],
189 width_height: Union[List[float], Tuple[float, float], Vector2],
203 width_height: Union[List[float], Tuple[float, float], Vector2],
/dports/graphics/rapid-photo-downloader/rapid-photo-downloader-0.9.26/raphodo/
H A Dphotoattributes.py240 width_height = self.image_height_width(thumbnail)
241 if width_height is not None:
242 self.exif_thumbnail_width = width_height[0]
243 self.exif_thumbnail_height = width_height[1]
600 width_height = self.image_height_width(preview_thumbnail)
601 if width_height is not None:
603 self.preview_width = width_height[0]
604 self.preview_height = width_height[1]
615 width_height = self.image_height_width(preview)
616 if width_height is not None:
[all …]
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DPhoto.hpp25 uint32 width_height; in parse() local
26 parse(width_height, parser); in parse()
27 dimensions.width = static_cast<uint16>(width_height >> 16); in parse()
28 dimensions.height = static_cast<uint16>(width_height & 0xFFFF); in parse()
/dports/devel/R-cran-BH/BH/inst/include/boost/geometry/io/svg/
H A Dsvg_mapper.hpp328 void write_header(std::string const& width_height) in write_header() argument
336 << "<svg " << width_height << " version=\"1.1\"" in write_header()
364 , std::string const& width_height = "width=\"100%\" height=\"100%\"") in svg_mapper() argument
371 write_header(width_height); in svg_mapper()
385 , std::string const& width_height = "width=\"100%\" height=\"100%\"") in svg_mapper() argument
391 write_header(width_height); in svg_mapper()
/dports/cad/atlc/atlc-4.6.1/src/
H A Dfinite_difference_mpi.c92 int width_height[2]; in mpi_worker() local
110 MPI_Recv(&width_height, in mpi_worker()
118 width = width_height[0]; in mpi_worker()
119 height = width_height[1]; in mpi_worker()
/dports/misc/vxl/vxl-3.3.2/core/vgl/
H A Dvgl_oriented_box_2d.h65 std::pair<T, T> width_height() const;
68 T width() const {std::pair<T, T> p = this->width_height(); return p.first;} in width()
71 T height() const {std::pair<T, T> p = this->width_height(); return p.second;} in height()
/dports/emulators/cannonball/cannonball-0.34/src/main/
H A Dtrackloader.cpp262 l->width_height = &data->rom[wh_offset]; in setup_level()
279 l->width_height = &data->rom[wh_offset]; in setup_section()
358 …int16_t value = (current_level->width_height[*addr + wh_offset] << 8) | (current_level->width_heig… in read_width_height()
/dports/graphics/graphviz/graphviz-2.44.1/plugin/gs/
H A Dgvloadimage_gs.c119 char width_height[20], dpi[10], cairo_context[30]; in gvloadimage_process_surface() local
126 width_height, in gvloadimage_process_surface()
139 sprintf(width_height, "-g%dx%d", us->x + us->w, us->y + us->h); in gvloadimage_process_surface()
/dports/graphics/py-pyganim/Pyganim-0.9.2/pyganim/
H A D__init__.py522 def scale(self, width_height): argument
528 self._transformedImages[i] = pygame.transform.scale(self.getFrame(i), width_height)
556 def smoothscale(self, width_height): argument
563 … self._transformedImages[i] = pygame.transform.smoothscale(self.getFrame(i), width_height)
833 def scale(self, width_height): argument
835 animObj.scale(width_height)
849 def smoothscale(self, width_height): argument
851 animObj.smoothscale(width_height)
/dports/x11-wm/i3/i3-4.20.1/include/
H A Ddata.h180 struct width_height { struct
194 struct width_height con_rect; argument
195 struct width_height con_window_rect;
/dports/x11-wm/i3-gaps/i3-4.20.1/include/
H A Ddata.h198 struct width_height { struct
212 struct width_height con_rect; argument
213 struct width_height con_window_rect;
/dports/games/freeorion/freeorion-0.4.10.2/client/human/
H A Dchmain.cpp257 auto width_height = HumanClientApp::GetWindowWidthHeight(); local
258 int width(width_height.first), height(width_height.second);
/dports/devel/boost-docs/boost_1_72_0/libs/geometry/doc/generated/
H A Dsvg_mapper.qbk42 std::string const & width_height = "width=\"100%\" height=\"100%\"")``
50 [* std::string const &]: ['width_height]: Optional information to increase width and/or height
/dports/devel/boost-python-libs/boost_1_72_0/libs/geometry/doc/generated/
H A Dsvg_mapper.qbk42 std::string const & width_height = "width=\"100%\" height=\"100%\"")``
50 [* std::string const &]: ['width_height]: Optional information to increase width and/or height
/dports/devel/boost-libs/boost_1_72_0/libs/geometry/doc/generated/
H A Dsvg_mapper.qbk42 std::string const & width_height = "width=\"100%\" height=\"100%\"")``
50 [* std::string const &]: ['width_height]: Optional information to increase width and/or height
/dports/devel/hyperscan/boost_1_75_0/libs/geometry/doc/generated/
H A Dsvg_mapper.qbk42 std::string const & width_height = "width=\"100%\" height=\"100%\"")``
50 [* std::string const &]: ['width_height]: Optional information to increase width and/or height
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/geometry/io/svg/
H A Dsvg_mapper.hpp291 , std::string const& width_height = "width=\"100%\" height=\"100%\"") in svg_mapper() argument
295 , m_width_height(width_height) in svg_mapper()
/dports/databases/xtrabackup/boost_1_59_0/boost/geometry/io/svg/
H A Dsvg_mapper.hpp291 , std::string const& width_height = "width=\"100%\" height=\"100%\"") in svg_mapper() argument
295 , m_width_height(width_height) in svg_mapper()

123