Home
last modified time | relevance | path

Searched refs:scale (Results 1 – 25 of 593) sorted by relevance

12345678910>>...24

/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
DPDF417Factory.php153 $scale = [];
160 $scale['frameX'] = $this->size - ($this->_borderPx * 2);
161 $scale['margin'] = round($this->size * ($this->margin / 100));
162 $scale['area'] = $scale['frameX'] - (($scale['margin'] * 2));
163 $scale['size'] = floor($scale['area'] / $bcd['num_cols']);
164 …$scale['posX'] = $scale['margin'] + floor(($scale['area'] - ($bcd['num_cols'] * $scale['size'])) /…
165 $scale['posY'] = $scale['posX'];
166 $scale['frameY'] = ($bcd['num_rows'] * $scale['size']) + ($scale['posY'] * 2);
168 $scale['frameX'] = $this->size;
169 $scale['margin'] = 0;
[all …]
DDatamatrixFactory.php153 $scale = [];
157 $scale['frame'] = $this->size - ($this->_borderPx * 2);
158 $scale['margin'] = round($this->size * ($this->margin / 100));
159 $scale['area'] = $scale['frame'] - (($scale['margin'] * 2));
160 $scale['size'] = floor($scale['area'] / $bcd['num_cols']);
161 …$scale['posX'] = $scale['margin'] + floor(($scale['area'] - ($bcd['num_cols'] * $scale['size'])) /…
162 $scale['posY'] = $scale['posX'];
164 $scale['frame'] = $this->size;
165 $scale['margin'] = 0;
166 $scale['area'] = $this->size;
[all …]
DQRcodeFactory.php96 $area = floor(($this->scale->size * $bcd['num_cols']) * 0.2);
192 $scale = [];
196 $scale['frame'] = $this->size - ($this->_borderPx * 2);
197 $scale['margin'] = round($this->size * ($this->margin / 100));
198 $scale['area'] = $scale['frame'] - (($scale['margin'] * 2));
199 $scale['size'] = floor($scale['area'] / $bcd['num_cols']);
200 …$scale['posX'] = $scale['margin'] + floor(($scale['area'] - ($bcd['num_cols'] * $scale['size'])) /…
201 $scale['posY'] = $scale['posX'];
203 $scale['frame'] = $this->size;
204 $scale['margin'] = 0;
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DUnitConverter.php211 * @param int $scale
214 private function add($s1, $s2, $scale) argument
217 return bcadd($s1, $s2, $scale);
219 return $this->scale((float)$s1 + (float)$s2, $scale);
227 * @param int $scale
230 private function mul($s1, $s2, $scale) argument
233 return bcmul($s1, $s2, $scale);
235 return $this->scale((float)$s1 * (float)$s2, $scale);
243 * @param int $scale
246 private function div($s1, $s2, $scale) argument
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Doutput.fastps.l2.class.php8 function image($image, $x, $y, $scale) { argument
9 $this->image_scaled($image, $x, $y, $scale, $scale);
34 function image_ry($image, $x, $y, $height, $bottom, $ox, $oy, $scale) { argument
38 $this->image($image, $x, $cy, $scale);
45 $this->image($image, $x, $cy, $scale);
50 function image_rx($image, $x, $y, $width, $right, $ox, $oy, $scale) { argument
54 $this->image($image, $cx, $y, $scale);
61 $this->image($image, $cx-$width, $y, $scale);
66 function image_rx_ry($image, $x, $y, $width, $height, $right, $bottom, $ox, $oy, $scale) { argument
72 $this->image($image, $cx, $cy, $scale);
[all …]
Doutput.fpdf.class.php161 function image($image, $x, $y, $scale) { argument
167 $y - $image->sy() * $scale,
168 $image->sx() * $scale,
169 $image->sy() * $scale);
174 function image_rx($image, $x, $y, $width, $right, $ox, $oy, $scale) { argument
183 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
193 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
200 function image_rx_ry($image, $x, $y, $width, $height, $right, $bottom, $ox, $oy, $scale) { argument
212 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
226 $this->pdf->Image($tmpname, $tx, $ty, $image->sx() * $scale, $image->sy() * $scale, "png");
[all …]
Doutput.png.class.php176 static $scale = null;
177 if (is_null($scale)) { $scale = $this->_widthPixels / mm2pt($this->media->width()); };
178 return ceil($x * $scale);
182 static $scale = null;
183 if (is_null($scale)) { $scale = $this->_heightPixels / mm2pt($this->media->height()); };
184 return ceil($y * $scale);
342 function image($image, $x, $y, $scale) { argument
343 $this->image_scaled($image, $x, $y, $scale, $scale);
366 function image_ry($image, $x, $y, $height, $bottom, $ox, $oy, $scale) { argument
374 $dx = $this->_fixSizeX($sx * $scale);
[all …]
Doutput.pdflib.class.php126 function image($image, $x, $y, $scale) { argument
130 pdf_place_image($this->pdf, $pim, $x, $y, $scale);
151 function image_ry($image, $x, $y, $height, $bottom, $ox, $oy, $scale) { argument
159 pdf_place_image($this->pdf, $pim, $x, $cy, $scale);
166 pdf_place_image($this->pdf, $pim, $x, $cy, $scale);
174 function image_rx($image, $x, $y, $width, $right, $ox, $oy, $scale) { argument
182 pdf_place_image($this->pdf, $pim, $cx, $y, $scale);
189 pdf_place_image($this->pdf, $pim, $cx-$width, $y, $scale);
197 function image_rx_ry($image, $x, $y, $width, $height, $right, $bottom, $ox, $oy, $scale) { argument
207 pdf_place_image($this->pdf, $pim, $cx, $cy, $scale);
[all …]
Dvalue.generic.length.php13 function scale($scale) { function in Value
14 $this->_number *= $scale;
15 $this->_points *= $scale;
/plugin/revealjs/plugin/zoom-js/
Dzoom.js19 scale: zoomLevel, property
90 function magnify( rect, scale ) { argument
99 rect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;
100 rect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;
104 if( scale === 1 ) {
114 transform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';
131 if( scale === 1 ) {
142 document.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';
143 document.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';
144 document.body.style.width = ( scale * 100 ) + '%';
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Networkconnectivity/
DExponentialBuckets.php24 public $scale; variable in Google\\Service\\Networkconnectivity\\ExponentialBuckets
42 public function setScale($scale) argument
44 $this->scale = $scale;
48 return $this->scale;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/
DExponential.php27 public $scale; variable in Google\\Service\\Logging\\Exponential
51 public function setScale($scale) argument
53 $this->scale = $scale;
57 return $this->scale;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
DExponential.php27 public $scale; variable in Google\\Service\\Monitoring\\Exponential
51 public function setScale($scale) argument
53 $this->scale = $scale;
57 return $this->scale;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PubsubLite/
DPartitionConfig.php31 public $scale; variable in Google\\Service\\PubsubLite\\PartitionConfig
64 public function setScale($scale) argument
66 $this->scale = $scale;
73 return $this->scale;
/plugin/diagramsnet/lib/js/diagramly/vsdx/
DmxVsdxCanvas2D.js237 w = w * s.scale;
238 h = h * s.scale;
241 x = ((x - geo.x + s.dx) * s.scale);
242 y = ((geo.height - y + geo.y - s.dy) * s.scale);
273 w = w * s.scale;
274 h = h * s.scale;
277 var gh = geo.height * s.scale;
278 var gw = geo.width * s.scale;
279 x = (x - geo.x + s.dx) * s.scale;
280 y = gh + (-y + geo.y - s.dy) * s.scale;
[all …]
/plugin/barcodes/vendor/jucksearm/php-barcode/
DBarcode.php16 $scale = null, argument
24 ->setScale($scale)
35 $scale = null, argument
44 ->setScale($scale)
55 $scale = null, argument
64 ->setScale($scale)
/plugin/impressjs/tpl/dokuwiki/
Dimpress.js132 var scale = function ( s ) { function
154 scale = hScale > wScale ? wScale : hScale;
156 if (config.maxScale && scale > config.maxScale) {
157 scale = config.maxScale;
160 if (config.minScale && scale < config.minScale) {
161 scale = config.minScale;
164 return scale;
311 scale: toNumber(data.scale, 1), property
326 scale(step.scale),
382 transform: perspective( config.perspective/windowScale ) + scale( windowScale )
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/
DOracleColumn.php57 public $scale; variable in Google\\Service\\Datastream\\OracleColumn
174 public function setScale($scale) argument
176 $this->scale = $scale;
183 return $this->scale;
/plugin/diagramsnet/lib/js/
Dexport.js13 if (data.scale == 'auto')
16 data.scale = 1;
30 data.scale = parseFloat(data.scale) || 1;
373 var phase = graph.gridSize * view.gridSteps * view.scale;
387 …var position = -Math.round(phase - mxUtils.mod(view.translate.x * view.scale - x0, phase)) + 'px '…
388 -Math.round(phase - mxUtils.mod(view.translate.y * view.scale - y0, phase)) + 'px';
521 …lDoc.documentElement.getAttribute('page') == '1' && data.w == 0 && data.h == 0 && data.scale == 1))
543 data.scale = Math.min((data.pageHeight * v) / (gb.height / graph.view.scale),
544 (data.pageWidth * h) / (gb.width / graph.view.scale));
548 data.scale = data.scale / graph.pageScale;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
DTableFieldSchema.php56 public $scale; variable in Google\\Service\\Bigquery\\TableFieldSchema
191 public function setScale($scale) argument
193 $this->scale = $scale;
200 return $this->scale;
/plugin/jcapture/src/com/hammurapi/jcapture/
DScreenShot.java29 private double scale; field in ScreenShot
43 double scale, in ScreenShot() argument
59 this.scale = scale; in ScreenShot()
110 if (scale<0.99 || scale > 1.01) { in call()
111 …redImage scaled = new BufferedImage((int) (img.getWidth()*scale), (int) (img.getHeight()*scale), i… in call()
122 mousePosition = new Point((int) (mousePosition.x*scale), (int) (mousePosition.y*scale)); in call()
/plugin/gallery/simple-lightbox/
Dsimple-lightbox.less228 transform: scale(0.1);
235 transform: scale(1.2);
241 transform: scale(0.1);
248 transform: scale(1.2);
254 transform: scale(0.1);
261 transform: scale(1.2);
267 transform: scale(0.1);
274 transform: scale(1.2);
280 transform: scale(0.1);
287 transform: scale(1.2);
/plugin/mathpublish/
Dsyntax.php137 $scale = 1;
138 if(is_a($R, 'renderer_plugin_dw2pdf')) $scale=3;
139 $size = $size * $scale;
159 $width = $width/$scale;
160 $height = $height/$scale;
/plugin/photogallery/lightGallery/js/
Dlg-zoom.js36 scale: 1, property
102 var scale = 1;
138 if (scale > 1) {
144 if (scale < 1) {
145 scale = 1;
148 zoom(scale);
163 scale = 1;
167 scale = _scale || 2;
217 zoom(scale);
222 scale -= _this.core.s.scale;
[all …]
/plugin/diagramsnet/lib/plugins/
Dnumber.js73 var scale = graph.getView().getScale();
74 var bounds = new mxRectangle(state.x + state.width - 4 * scale, state.y + 4 * scale, 0, 0);
77 state.secondLabel.scale = scale;

12345678910>>...24