PHP可以获得PDF颜色分离列表

时间:2016-01-03 17:43:44

标签: php pdf colors

我正在尝试获取上传的PDF的分色列表。 (进行车间订单)。

我尝试使用像这样的图像Magick:

app.controller('CohortController',['$scope','$resource',
  function($scope,$resource){
    var Cohort=$resource('http://localhost:3000/api/cohorts');
    Cohort.query(function(results){
      $scope.cohorts=results;
    });
    $scope.cohorts=[];

    $scope.createCohort= function () {
      var cohort=new Cohort();
      cohort.name=$scope.CohortName;
      cohort.id=$scope.CohortId;
      cohort.$save(function(result){
        $scope.cohorts.push(result);
        $scope.CohortName='';
        $scope.CohortId='';
      });
    }
  }]);

但我只收到了Pantone Spot Colors。 什么时候PDF使用颜色PANTONE橙色021和CYAN?

0 个答案:

没有答案