Skip to content

New function in TemplateProcessor to add images to documents #1084

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions src/PhpWord/Shared/Converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

namespace PhpOffice\PhpWord\Shared;

use PhpOffice\PhpWord\Exception\InvalidStyleException;

/**
* Common converter functions
*/
Expand Down Expand Up @@ -227,6 +229,121 @@ public static function emuToPixel($emu = 1)
return round($emu / self::PIXEL_TO_EMU);
}

/**
* Convert an absolute CSS measurement to pixels
*
* Units for absolute CSS measurements are cm, mm, in, px, pt and pc
*
* Note that the result will be rounded to the nearest pixel
*
* @param string $cssMeasurement If no measurement unit is included then cm
* is assumed
*
* @throws \PHPOffice\PhpWord\Exception\InvalidStyleException
*
* @return float
*/
public static function cssToPixel($cssMeasurement = '1cm')
{
$units = trim(preg_replace('/^-?(?:\\d+\\.\\d+|\\.?\\d+)/', '', trim($cssMeasurement)));
$value = preg_replace('/\\D+$/', '', trim($cssMeasurement));
if ((strlen($value) > 0) && ($value[0] == '.')) {
$value = '0' . $value;
}
switch (strtolower($units)) {
case 'in':
$pixel = $value * static::INCH_TO_PIXEL;
break;
case 'cm':
case '':
$pixel = ($value / static::INCH_TO_CM) * static::INCH_TO_PIXEL;
break;
case 'mm':
$pixel = ($value / (10 * static::INCH_TO_CM)) * static::INCH_TO_PIXEL;
break;
case 'pt':
$pixel = ($value / static::INCH_TO_POINT) * static::INCH_TO_PIXEL;
break;
case 'pc':
$pixel = ($value / (12 * static::INCH_TO_POINT)) * static::INCH_TO_PIXEL;
break;
case 'px':
$pixel = floatval($value);
break;
default:
throw new InvalidStyleException($cssMeasurement . ' is an unsupported CSS measurement');
}
return $pixel;
}

/**
* Convert an absolute CSS measurement to EMU
*
* Units for absolute CSS measurements are cm, mm, in, px, pt and pc
*
* @param string $cssMeasurement If no measurement unit is included then cm
* is assumed
*
* @throws \PHPOffice\PhpWord\Exception\InvalidStyleException
*
* @return float
*/
public static function cssToEmu($cssMeasurement = '1cm')
{
return static::cssToPixel($cssMeasurement) * static::PIXEL_TO_EMU;
}

/**
* Convert an absolute CSS measurement to point
*
* Units for absolute CSS measurements are cm, mm, in, px, pt and pc
*
* @param string $cssMeasurement If no measurement unit is included then cm
* is assumed
*
* @throws \PHPOffice\PhpWord\Exception\InvalidStyleException
*
* @return float
*/
public static function cssToPoint($cssMeasurement = '1cm')
{
return static::cssToPixel($cssMeasurement) * static::INCH_TO_POINT / static::INCH_TO_PIXEL;
}

/**
* Convert an absolute CSS measurement to twip
*
* Units for absolute CSS measurements are cm, mm, in, px, pt and pc
*
* @param string $cssMeasurement If no measurement unit is included then cm
* is assumed
*
* @throws \PHPOffice\PhpWord\Exception\InvalidStyleException
*
* @return float
*/
public static function cssToTwip($cssMeasurement = '1cm')
{
return static::cssToPixel($cssMeasurement) * static::INCH_TO_TWIP / static::INCH_TO_PIXEL;
}

/**
* Convert an absolute CSS measurement to centimeter
*
* Units for absolute CSS measurements are cm, mm, in, px, pt and pc
*
* @param string $cssMeasurement If no measurement unit is included then cm
* is assumed
*
* @throws \PHPOffice\PhpWord\Exception\InvalidStyleException
*
* @return float
*/
public static function cssToCm($cssMeasurement = '1cm')
{
return static::cssToPixel($cssMeasurement) * static::INCH_TO_CM / static::INCH_TO_PIXEL;
}

/**
* Convert degree to angle
*
Expand Down
Loading