Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
c791bcd8
Commit
c791bcd8
authored
Jun 30, 2011
by
Romain Courteaud
🐸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Generate by default indexed 8bpp tiff image.
This is the expected parameter to allow tesseract convertion.
parent
05b2d82a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
product/PortalTransforms/libtransforms/imagemagick_transform.py
...t/PortalTransforms/libtransforms/imagemagick_transform.py
+3
-0
product/PortalTransforms/transforms/image_to_tiff.py
product/PortalTransforms/transforms/image_to_tiff.py
+3
-0
No files found.
product/PortalTransforms/libtransforms/imagemagick_transform.py
View file @
c791bcd8
...
...
@@ -22,6 +22,9 @@ class ImageMagickTransforms:
parameter_list
.
extend
([
'-resize'
,
'%sx%s!'
%
(
newwidth
,
newheight
)])
elif
newwidth
or
newheight
:
parameter_list
.
extend
([
'-resize'
,
'%sx%s'
%
(
newwidth
,
newheight
)])
depth
=
kwargs
.
get
(
'depth'
,
''
)
if
depth
:
parameter_list
.
extend
([
'-depth'
,
'%s'
%
depth
,
'-type'
,
'Palette'
])
parameter_list
.
append
(
'%s:-'
%
self
.
format
)
process
=
subprocess
.
Popen
(
parameter_list
,
stdin
=
subprocess
.
PIPE
,
...
...
product/PortalTransforms/transforms/image_to_tiff.py
View file @
c791bcd8
...
...
@@ -6,6 +6,9 @@ class image_to_tiff(ImageMagickTransforms):
output
=
'image/tiff'
format
=
'tiff'
def
convert
(
self
,
orig
,
data
,
depth
=
8
,
**
kwargs
):
return
ImageMagickTransforms
.
convert
(
self
,
orig
,
data
,
depth
=
depth
,
**
kwargs
)
def
register
():
return
image_to_tiff
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment