Changeset 1513923
- Timestamp:
- 10/13/2016 11:52:56 AM (9 years ago)
- Location:
- wp-booklet/trunk
- Files:
-
- 3 edited
-
classes/class-wp-booklet2-pdf.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-booklet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-booklet/trunk/classes/class-wp-booklet2-pdf.php
r1506690 r1513923 82 82 $pdf = $this->_file; 83 83 $target = $upload_path . '/wp-booklet-test-' . uniqid() . '.jpg'; 84 $command = new WP_Booklet2_Command("convert", "-background white - alpha off -layers flatten -limit memory 32MiB -limit map 64MiB{$pdf} {$target}");84 $command = new WP_Booklet2_Command("convert", "-background white -flatten -limit memory 32MiB -limit map 64MiB -verbose {$pdf} {$target}"); 85 85 $result = $command->run_command(); 86 86 … … 131 131 132 132 //Use Imagemagick and Ghostscript to convert PDF pages into jpegs 133 $command = new WP_Booklet2_Command("convert", "-background white - alpha remove -density 200-verbose {$pdf_path}{$conversion_page_count} {$upload_path}/{$image_group}.jpg");133 $command = new WP_Booklet2_Command("convert", "-background white -flatten -limit memory 32MiB -limit map 64MiB -verbose {$pdf_path}{$conversion_page_count} {$upload_path}/{$image_group}.jpg"); 134 134 $operation = $command->run_command(); 135 135 -
wp-booklet/trunk/readme.txt
r1506690 r1513923 83 83 == Changelog == 84 84 85 = 2.1.8 = 86 * Imagemagick was made to use '-flatten' instead of '-layers flatten'. '-alpha off' was removed. 87 85 88 = 2.1.7 = 86 89 * Imagemagick now uses -layers instead of -alpha remove … … 197 200 == Upgrade Notice == 198 201 202 = 2.1.8 = 203 * Imagemagick was made to use '-flatten' instead of '-layers flatten'. '-alpha off' was removed. 204 199 205 = 2.1.7 = 200 206 * Imagemagick now uses -layers instead of -alpha remove -
wp-booklet/trunk/wp-booklet.php
r1506690 r1513923 3 3 * Plugin Name: WP Booklet 4 4 * Description: Allows creation of flip books using the jQuery Booklet plugin. Successor to WP Booklet 1.x 5 * Version: 2.1. 75 * Version: 2.1.8 6 6 * Author: BinaryStash 7 7 * Author URI: http://www.binarystash.net
Note: See TracChangeset
for help on using the changeset viewer.