@gferreira Awesome! Thanks so much!
traviskochel
@traviskochel
0
Reputation
2
Posts
129
Profile views
0
Followers
0
Following
Best posts made by traviskochel
This user hasn't posted anything yet.
Latest posts made by traviskochel
-
RE: access a specific frame from a gif
-
RE: access a specific frame from a gif
Is there a way to do this with an
ImageObject()
?I'm trying to do something similar with a pdf, and then apply some filters.
img = ImageObject(path, pageNumber= pageNumber) img.falseColor(color0=(0,0,1,1)) image(img, (0, 0))
This gives an
unexpected keyword argument 'pageNumber'
.And moving the pageNumber to the image call, has no effect. It just inserts the first page:
image(img, (0, 0), pageNumber=pageNumber)