Search found 3 matches

by sangdaono
2015-12-09T01:28:03-07:00
Forum: Users
Topic: Streaming file without write to the disk
Replies: 1
Views: 5088

Streaming file without write to the disk

Hi, i'm trying to crop an image into tiles then upload the tiles into Amazon S3.
I'm doing it on NodeJS with exec function.
Problem : i have to wait until the tile files to be written into the disk then i can upload those files to Amazon S3.
Question : Is is possible to perform upload function ...
by sangdaono
2015-11-16T20:57:21-07:00
Forum: Users
Topic: Coordinate not correct when using crop and extent together
Replies: 2
Views: 2719

Re: Coordinate not correct when using crop and extent together

Thank you so much. It's worked like charm!
I'm using IM 6.9.2-1 Q16 Win64
by sangdaono
2015-11-16T18:32:03-07:00
Forum: Users
Topic: Coordinate not correct when using crop and extent together
Replies: 2
Views: 2719

Coordinate not correct when using crop and extent together

Here the command i used to splice an image into multiple:

convert "input.jpg" -resize 1135x -crop 256x256 -background transparent -extent 256x256 -set filename:tile "%[fx:page.x/256]_%[fx:page.y/256]" +repage +adjoin "output\%[filename:tile].png"

Here the result:
http://i.imgur.com/yCOSp9P.png ...